xref: /freebsd/usr.bin/lex/version.awk (revision a3c858005cae175e277f6f6735ca9eaea7eaf3c3)
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