aboutsummaryrefslogtreecommitdiffstats
path: root/test/zap_cpp.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:41:09 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:41:09 +0300
commit8c042f99cc7465c86351d21331a129111b75345d (patch)
tree9656e653be0e42e5469cec77635c20356de152c2 /test/zap_cpp.awk
parent8ceb5f934787eb7be5fb452fb39179df66119954 (diff)
downloadegawk-8c042f99cc7465c86351d21331a129111b75345d.tar.gz
egawk-8c042f99cc7465c86351d21331a129111b75345d.tar.bz2
egawk-8c042f99cc7465c86351d21331a129111b75345d.zip
Move to gawk-3.0.0.
Diffstat (limited to 'test/zap_cpp.awk')
-rw-r--r--test/zap_cpp.awk13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/zap_cpp.awk b/test/zap_cpp.awk
deleted file mode 100644
index 99a5a1f4..00000000
--- a/test/zap_cpp.awk
+++ /dev/null
@@ -1,13 +0,0 @@
-# this will remove (comment out) all preprocessor traces from
-# cpp produced files:
-# run this awk program as follows
-# awk -f zap_cpp.awk <file>
-# end redirect output where you want it to
-NF > 0 {
- if ($1 ~ /^#/)
- print "/*", $0, "*/"
- else
- print
-}
-
-