File:  [gforth] / gforth / vmgen-ex / seq2rule.awk
Revision 1.1: download - view: text, annotated - select for diffs
Tue May 1 10:20:56 2001 UTC (22 years, 11 months ago) by anton
Branches: MAIN
CVS tags: v0-7-0, v0-6-2, v0-6-1, v0-6-0, HEAD
fixed profiling
completed README

BEGIN {
  FS="\t";
}
{
  name = $4;
  gsub(/ /,"_",name);
  print name" = "$4;
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>