Codebase list libmawk / b9006faf-873e-4aac-9952-74a72f875ff9/main tools / unwarn_all.sh
b9006faf-873e-4aac-9952-74a72f875ff9/main

Tree @b9006faf-873e-4aac-9952-74a72f875ff9/main (Download .tar.gz)

unwarn_all.sh @b9006faf-873e-4aac-9952-74a72f875ff9/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 {} \;