Codebase list libmawk / a8c8f483-bda4-4dcb-b181-d7b9964ade2c/main tools / unwarn_all.sh
a8c8f483-bda4-4dcb-b181-d7b9964ade2c/main

Tree @a8c8f483-bda4-4dcb-b181-d7b9964ade2c/main (Download .tar.gz)

unwarn_all.sh @a8c8f483-bda4-4dcb-b181-d7b9964ade2c/mainraw · history · blame

#!/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 {} \;