repo.or.cz
/
freebsd-src
/
fkvm-freebsd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Ignore machine-check MSRs
[freebsd-src/fkvm-freebsd.git]
/
crypto
/
openssl
/
util
/
extract-section.pl
blob
7a0ba4f69a7a6407cd95e80a1e486d962fd54937
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