Intial commit
[profile/ivi/w3m.git] / funcname1.awk
1 BEGIN { n=0 }
2 /^#/ {next}
3 {
4   if (cmd[$2] == "") {
5     print "#define FUNCNAME_" $2 " " n;
6     cmd[$2] = n;
7   }
8   n++;
9 }
10