Codebase list libmawk / 1df34837-a1d9-4cbd-a796-a1f5ebe673fc/main tools / unwarn_all.sh
1df34837-a1d9-4cbd-a796-a1f5ebe673fc/main

Tree @1df34837-a1d9-4cbd-a796-a1f5ebe673fc/main (Download .tar.gz)

unwarn_all.sh @1df34837-a1d9-4cbd-a796-a1f5ebe673fc/main

b761e9e
 
 
 
 
 
 
 
 
 
#!/bin/sh

# This file is placed in the Public Domain.

# Comment all #warnings in all .h and .c files, recursively.
# Useful on systems with CC with no support for #warning.

action=`echo "$0" | sed "s/_all//"`

find . -name '*.[ch]' -exec $action {} \;