Codebase list libmawk / 981c753b-c373-44cd-8865-7dcd5e2502ff/main tools / unwarn_all.sh
981c753b-c373-44cd-8865-7dcd5e2502ff/main

Tree @981c753b-c373-44cd-8865-7dcd5e2502ff/main (Download .tar.gz)

unwarn_all.sh @981c753b-c373-44cd-8865-7dcd5e2502ff/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 {} \;