diff options
Diffstat (limited to 'scripts/checkincludes.pl')
-rwxr-xr-x | scripts/checkincludes.pl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/checkincludes.pl b/scripts/checkincludes.pl index 32ebff659fcc..4bff13985ebd 100755 --- a/scripts/checkincludes.pl +++ b/scripts/checkincludes.pl | |||
@@ -3,6 +3,15 @@ | |||
3 | # checkincludes: Find files included more than once in (other) files. | 3 | # checkincludes: Find files included more than once in (other) files. |
4 | # Copyright abandoned, 2000, Niels Kristian Bech Jensen <nkbj@image.dk>. | 4 | # Copyright abandoned, 2000, Niels Kristian Bech Jensen <nkbj@image.dk>. |
5 | 5 | ||
6 | sub usage { | ||
7 | print "Usage: checkincludes.pl <file list>\n"; | ||
8 | exit 1; | ||
9 | } | ||
10 | |||
11 | if ($#ARGV < 0) { | ||
12 | usage(); | ||
13 | } | ||
14 | |||
6 | foreach $file (@ARGV) { | 15 | foreach $file (@ARGV) { |
7 | open(FILE, $file) or die "Cannot open $file: $!.\n"; | 16 | open(FILE, $file) or die "Cannot open $file: $!.\n"; |
8 | 17 | ||