Codebase list libmawk / c18583c0-bfa6-44ff-88f7-5aa9a2739ad8/main tools / unwarn_all.sh
c18583c0-bfa6-44ff-88f7-5aa9a2739ad8/main

Tree @c18583c0-bfa6-44ff-88f7-5aa9a2739ad8/main (Download .tar.gz)

unwarn_all.sh @c18583c0-bfa6-44ff-88f7-5aa9a2739ad8/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 {} \;