diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 21:09:12 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 21:09:12 +0000 |
commit | 8ac364139a0af08f834c11bd2b8bd6dfc6707dfb (patch) | |
tree | 46016ba4569be263d5bf772e359e3207255bf12a /misc/findleak.pl | |
parent | 005b39c856917f060973f8d07c98d111b67d0a7f (diff) | |
download | nasm-8ac364139a0af08f834c11bd2b8bd6dfc6707dfb.tar.gz nasm-8ac364139a0af08f834c11bd2b8bd6dfc6707dfb.tar.bz2 nasm-8ac364139a0af08f834c11bd2b8bd6dfc6707dfb.zip |
NASM 0.98.30
Diffstat (limited to 'misc/findleak.pl')
-rw-r--r-- | misc/findleak.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/findleak.pl b/misc/findleak.pl index 727628b..dbb3367 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> |