summaryrefslogtreecommitdiff
path: root/crypto/openssl/util/extract-section.pl
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/util/extract-section.pl')
-rw-r--r--crypto/openssl/util/extract-section.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/crypto/openssl/util/extract-section.pl b/crypto/openssl/util/extract-section.pl
deleted file mode 100644
index 7a0ba4f69a7a6..0000000000000
--- a/crypto/openssl/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";
-