]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/nvi/common/options.awk
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / contrib / nvi / common / options.awk
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 }
7 END {
8         printf("#define O_OPTIONCOUNT %d\n", cnt);
9 }