aboutsummaryrefslogtreecommitdiffstats
path: root/functable.awk
diff options
context:
space:
mode:
Diffstat (limited to 'functable.awk')
-rw-r--r--functable.awk9
1 files changed, 9 insertions, 0 deletions
diff --git a/functable.awk b/functable.awk
new file mode 100644
index 0000000..ed1f736
--- /dev/null
+++ b/functable.awk
@@ -0,0 +1,9 @@
+BEGIN {
+ print "#include <stdio.h>"
+ print "#include \"funcname1.h\""
+ print "%%"
+}
+/^#/ { next }
+{
+ print $1 " FUNCNAME_" $2;
+}