minix/external/bsd/flex/dist/tests/test-linedir-r/check-lines.awk
2012-06-18 10:54:47 +00:00

7 lines
119 B
Awk

{
if( /#line/ && $1 != ($3 - 1)) {
printf "Line directive mismatch at line %d: %s\n", NR, $0;
exit 1;
}
}