Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 165571
b: refs/heads/master
c: f9d490a
h: refs/heads/master
i:
  165569: a9bc401
  165567: 872d2eb
v: v3
  • Loading branch information
Luis R. Rodriguez authored and Sam Ravnborg committed Sep 20, 2009
1 parent 9608b97 commit 8c7004a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d9a7a2bd07ed3b838d95559d547061afcf3e45f6
refs/heads/master: f9d490ab374236a115440c771ecf0fb2890eb929
9 changes: 9 additions & 0 deletions trunk/scripts/checkincludes.pl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
# checkincludes: Find files included more than once in (other) files.
# Copyright abandoned, 2000, Niels Kristian Bech Jensen <nkbj@image.dk>.

sub usage {
print "Usage: checkincludes.pl <file list>\n";
exit 1;
}

if ($#ARGV < 0) {
usage();
}

foreach $file (@ARGV) {
open(FILE, $file) or die "Cannot open $file: $!.\n";

Expand Down

0 comments on commit 8c7004a

Please sign in to comment.