Revision e517dfd3d1a1e4dcb37689274aead3daaedc98af authored by Emilia Kasper on 28 August 2014, 17:45:55 UTC, committed by Emilia Kasper on 02 September 2014, 13:24:59 UTC
"inline" without static is not correct as the compiler may choose to ignore it and will then either emit an external definition, or expect one. Reviewed-by: Geoff Thorpe <geoff@openssl.org> (cherry picked from commit 86f50b36e63275a916b147f9d8764e3c0c060fdb)
1 parent 74687f5
extract-section.pl
#!/usr/bin/perl
while(<STDIN>) {
if (/=for\s+comment\s+openssl_manual_section:(\S+)/)
{
print "$1\n";
exit 0;
}
}
print "$ARGV[0]\n";

Computing file changes ...