xref: /freebsd/contrib/nvi/common/options.awk (revision 8cc087a1eee9ec1ca9f7ac1e63ad51bdb5a682eb)
1#	@(#)options.awk	10.1 (Berkeley) 6/8/95
2
3/^\/\* O_[0-9A-Z_]*/ {
4	printf("#define %s %d\n", $2, cnt++);
5	next;
6}
7END {
8	printf("#define O_OPTIONCOUNT %d\n", cnt);
9}
10