Codebase list libmawk / 70499808-c2b9-4be2-ae11-0ab4b3a1a115/main tools / unwarn_all.sh
70499808-c2b9-4be2-ae11-0ab4b3a1a115/main

Tree @70499808-c2b9-4be2-ae11-0ab4b3a1a115/main (Download .tar.gz)

unwarn_all.sh @70499808-c2b9-4be2-ae11-0ab4b3a1a115/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 {} \;