xref: /freebsd/usr.bin/lex/version.awk (revision 2da066ef6d85d3f7cd8aaec14369d66254836536)
1
2BEGIN {
3	FS = "[ \t\.\"]+"
4}
5
6{
7	if ($1 ~ /^#define$/ && $2 ~ /^VERSION$/) {
8		printf("%s.%s.%s\n", $3, $4, $5);
9	}
10}
11