diff options
author | miod <> | 2014-04-22 20:31:38 +0000 |
---|---|---|
committer | miod <> | 2014-04-22 20:31:38 +0000 |
commit | 1c26126a31b9d310c9fb3e33570fcbbe14676b11 (patch) | |
tree | 4598ce10bcfadfefbee541f6f4d2d7f25b1762a7 /src/lib/libcrypto/lhash | |
parent | d9e10f75814922e77d3c507d0bed87de0e2095c6 (diff) | |
download | openbsd-1c26126a31b9d310c9fb3e33570fcbbe14676b11.tar.gz openbsd-1c26126a31b9d310c9fb3e33570fcbbe14676b11.tar.bz2 openbsd-1c26126a31b9d310c9fb3e33570fcbbe14676b11.zip |
Remove meat which either duplicates code found in apps/, or is only of value
for 20th century historians, and can be put in the Attic.
Diffstat (limited to 'src/lib/libcrypto/lhash')
-rw-r--r-- | src/lib/libcrypto/lhash/num.pl | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/lib/libcrypto/lhash/num.pl b/src/lib/libcrypto/lhash/num.pl deleted file mode 100644 index 30fedf9cd5..0000000000 --- a/src/lib/libcrypto/lhash/num.pl +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | #!/usr/local/bin/perl | ||
2 | |||
3 | #node 10 -> 4 | ||
4 | |||
5 | while (<>) | ||
6 | { | ||
7 | next unless /^node/; | ||
8 | chop; | ||
9 | @a=split; | ||
10 | $num{$a[3]}++; | ||
11 | } | ||
12 | |||
13 | @a=sort {$a <=> $b } keys %num; | ||
14 | foreach (0 .. $a[$#a]) | ||
15 | { | ||
16 | printf "%4d:%4d\n",$_,$num{$_}; | ||
17 | } | ||