xref: /minix3/external/bsd/flex/dist/tests/test-linedir-r/check-lines.awk (revision 357f1050293be536ca8309aae20889945ce99fc1)
1{
2  if( /#line/ && $1 != ($3 - 1)) {
3    printf "Line directive mismatch at line %d: %s\n", NR, $0;
4    exit 1;
5  }
6}
7
8