.. | .. |
---|
1 | 1 | #!/bin/sh |
---|
| 2 | +# SPDX-License-Identifier: GPL-2.0-or-later |
---|
2 | 3 | # |
---|
3 | 4 | # Just process the CPP output from systbl_chk.c and complain |
---|
4 | 5 | # if anything is out of order. |
---|
5 | 6 | # |
---|
6 | 7 | # Copyright © 2008 IBM Corporation |
---|
7 | 8 | # |
---|
8 | | -# This program is free software; you can redistribute it and/or |
---|
9 | | -# modify it under the terms of the GNU General Public License |
---|
10 | | -# as published by the Free Software Foundation; either version |
---|
11 | | -# 2 of the License, or (at your option) any later version. |
---|
12 | 9 | |
---|
13 | 10 | awk 'BEGIN { num = -1; } # Ignore the beginning of the file |
---|
14 | 11 | /^#/ { next; } |
---|