diff options
| author | djm <> | 2008-09-06 12:15:54 +0000 |
|---|---|---|
| committer | djm <> | 2008-09-06 12:15:54 +0000 |
| commit | cde2be3860592a7ef8120181af378dc6c4e352a5 (patch) | |
| tree | ad353b318ee632f73212a174cffac9bb9e573b7c /src/lib/libcrypto/util/extract-section.pl | |
| parent | 353af015bc02bd5a098251d120b3ae56c10ac763 (diff) | |
| parent | 8ad1b7b0da611c075d7e42b0a3362f0bf742c962 (diff) | |
| download | openbsd-cde2be3860592a7ef8120181af378dc6c4e352a5.tar.gz openbsd-cde2be3860592a7ef8120181af378dc6c4e352a5.tar.bz2 openbsd-cde2be3860592a7ef8120181af378dc6c4e352a5.zip | |
This commit was generated by cvs2git to track changes on a CVS vendor
branch.
Diffstat (limited to 'src/lib/libcrypto/util/extract-section.pl')
| -rw-r--r-- | src/lib/libcrypto/util/extract-section.pl | 12 |
1 files changed, 12 insertions, 0 deletions
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 @@ | |||
| 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 | |||
