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