diff options
author | Luis R. Rodriguez <lrodriguez@Atheros.com> | 2009-09-18 15:49:26 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2009-09-20 06:27:43 -0400 |
commit | f9d490ab374236a115440c771ecf0fb2890eb929 (patch) | |
tree | ab3e9b7598dcb5c9c8eb850db36df858059cac47 /scripts | |
parent | d9a7a2bd07ed3b838d95559d547061afcf3e45f6 (diff) |
checkincludes.pl: provide usage helper
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-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 | ||