aboutsummaryrefslogtreecommitdiff
path: root/src/dbgmod.awk
blob: 6eeffd3f60f0ae32337855ef74345fa3f70da65b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
BEGIN {
	print "/* -*- buffer-read-only: t -*- vi: set ro:"
	print "   THIS FILE IS GENERATED AUTOMATICALLY.  PLEASE DO NOT EDIT."
	print "*/"
}
{ print "#ifdef __DBGMOD_C_ARRAY"
  print "\"" tolower($1) "\","
  print "#else"
  if (offset)
	  print "# define MF_SOURCE_" $1, "(" offset " + " NR-1 ")"
  else
	  print "# define MF_SOURCE_" $1, NR
  print "#endif" }

Return to:

Send suggestions and report system problems to the System administrator.