]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - crypto/openssl/util/extract-section.pl
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / crypto / openssl / util / extract-section.pl
1 #!/usr/bin/perl
2
3 while(<STDIN>) {
4         if (/=for\s+comment\s+openssl_manual_section:(\S+)/)
5                 {
6                 print "$1\n";
7                 exit 0;
8                 }
9 }
10
11 print "$ARGV[0]\n";
12