summaryrefslogtreecommitdiff
path: root/misc/findleak.pl
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2002-04-30 21:09:12 +0000
committerH. Peter Anvin <hpa@zytor.com>2002-04-30 21:09:12 +0000
commit8ac364139a0af08f834c11bd2b8bd6dfc6707dfb (patch)
tree46016ba4569be263d5bf772e359e3207255bf12a /misc/findleak.pl
parent005b39c856917f060973f8d07c98d111b67d0a7f (diff)
downloadnasm-8ac364139a0af08f834c11bd2b8bd6dfc6707dfb.tar.gz
NASM 0.98.30nasm-0.98.30
Diffstat (limited to 'misc/findleak.pl')
-rw-r--r--misc/findleak.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/findleak.pl b/misc/findleak.pl
index 727628b4..dbb33671 100644
--- a/misc/findleak.pl
+++ b/misc/findleak.pl
@@ -1,4 +1,6 @@
#!/usr/bin/perl
+# From: Ed Beroset <beroset@mindspring.com>
+
my %mem = {};
my %alloc = {};
while(<>)
@@ -38,4 +40,3 @@ foreach $goo (sort keys %mem)
print "$mem{$goo} $alloc{$goo}";
}
}
-# From: Ed Beroset <beroset@mindspring.com>