aboutsummaryrefslogtreecommitdiff
path: root/openssl/trunk/util/extract-section.pl
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/trunk/util/extract-section.pl')
-rw-r--r--openssl/trunk/util/extract-section.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/openssl/trunk/util/extract-section.pl b/openssl/trunk/util/extract-section.pl
deleted file mode 100644
index 7a0ba4f6..00000000
--- a/openssl/trunk/util/extract-section.pl
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/perl
-
-while(<STDIN>) {
- if (/=for\s+comment\s+openssl_manual_section:(\S+)/)
- {
- print "$1\n";
- exit 0;
- }
-}
-
-print "$ARGV[0]\n";
-