From d339461e47f150ab9acc413b95839c69acbd6552 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Thu, 5 Jan 2012 22:59:12 +0000 Subject: This commit was manufactured by cvs2git to create tag 'openssl_1_0_0_f'. --- src/lib/libcrypto/util/extract-section.pl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/lib/libcrypto/util/extract-section.pl (limited to 'src/lib/libcrypto/util/extract-section.pl') diff --git a/src/lib/libcrypto/util/extract-section.pl b/src/lib/libcrypto/util/extract-section.pl new file mode 100644 index 0000000000..7a0ba4f69a --- /dev/null +++ b/src/lib/libcrypto/util/extract-section.pl @@ -0,0 +1,12 @@ +#!/usr/bin/perl + +while() { + if (/=for\s+comment\s+openssl_manual_section:(\S+)/) + { + print "$1\n"; + exit 0; + } +} + +print "$ARGV[0]\n"; + -- cgit v1.2.3-55-g6feb