Codebase list libmawk / run/cbda7441-eb84-4e29-9baa-0aecded4e513/main tools / unwarn_all.sh
run/cbda7441-eb84-4e29-9baa-0aecded4e513/main

Tree @run/cbda7441-eb84-4e29-9baa-0aecded4e513/main (Download .tar.gz)

unwarn_all.sh @run/cbda7441-eb84-4e29-9baa-0aecded4e513/main

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