aboutsummaryrefslogtreecommitdiffstats
path: root/test/zap_cpp.awk
diff options
context:
space:
mode:
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
-}
-
-