Codebase list libmawk / 7ab313a7-f14c-465a-bfe5-5a4585f9ed23/main tools / unwarn_all.sh
7ab313a7-f14c-465a-bfe5-5a4585f9ed23/main

Tree @7ab313a7-f14c-465a-bfe5-5a4585f9ed23/main (Download .tar.gz)

unwarn_all.sh @7ab313a7-f14c-465a-bfe5-5a4585f9ed23/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 {} \;