summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKarel Zak2008-11-26 12:42:35 +0100
committerKarel Zak2008-11-26 12:59:29 +0100
commit44e293d65c78b8a97c22be4e94657bd5fb2b9bfd (patch)
tree03663675b0f07d225400b07b58735b00488b7b67 /tools
parentfdisk: fix man page typo (diff)
downloadkernel-qcow2-util-linux-44e293d65c78b8a97c22be4e94657bd5fb2b9bfd.tar.gz
kernel-qcow2-util-linux-44e293d65c78b8a97c22be4e94657bd5fb2b9bfd.tar.xz
kernel-qcow2-util-linux-44e293d65c78b8a97c22be4e94657bd5fb2b9bfd.zip
tools: add checkincludes.pl (from linux kernel)
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checkincludes.pl24
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/checkincludes.pl b/tools/checkincludes.pl
new file mode 100755
index 000000000..8e6b716c1
--- /dev/null
+++ b/tools/checkincludes.pl
@@ -0,0 +1,24 @@
+#!/usr/bin/perl
+#
+# checkincludes: Find files included more than once in (other) files.
+# Copyright abandoned, 2000, Niels Kristian Bech Jensen <nkbj@image.dk>.
+
+foreach $file (@ARGV) {
+ open(FILE, $file) or die "Cannot open $file: $!.\n";
+
+ my %includedfiles = ();
+
+ while (<FILE>) {
+ if (m/^\s*#\s*include\s*[<"](\S*)[>"]/o) {
+ ++$includedfiles{$1};
+ }
+ }
+
+ foreach $filename (keys %includedfiles) {
+ if ($includedfiles{$filename} > 1) {
+ print "$file: $filename is included more than once.\n";
+ }
+ }
+
+ close(FILE);
+}