aboutsummaryrefslogblamecommitdiffstats
path: root/functable.awk
blob: ed1f73649e3b7432271e37598f502f3116458c89 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                  
BEGIN {
  print "#include <stdio.h>"
  print "#include \"funcname1.h\""
  print "%%"
}
/^#/ { next }
{
  print $1 " FUNCNAME_" $2;
}