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