File: options.awk

package info (click to toggle)
vigor 0.016-15
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 5,700 kB
  • ctags: 3,859
  • sloc: ansic: 44,551; sh: 2,941; tcl: 1,544; makefile: 754; perl: 269; awk: 24; csh: 13
file content (9 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
#	@(#)options.awk	10.1 (Berkeley) 6/8/95
 
/^\/\* O_[0-9A-Z_]*/ {
	printf("#define %s %d\n", $2, cnt++);
	next;
}
END {
	printf("#define O_OPTIONCOUNT %d\n", cnt);
}