Commit 1eca7853 authored by Sam Lantinga's avatar Sam Lantinga

*** empty log message ***

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40346
parent 8ef049cc
......@@ -9,7 +9,7 @@ while ( ($file = shift(@ARGV)) ) {
}
$file =~ s,.*/,,;
while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "_$1\n";
}
}
......
......@@ -10,7 +10,7 @@ while ( ($file = shift(@ARGV)) ) {
$printed_header = 0;
$file =~ s,.*/,,;
while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "\t$1\n";
}
}
......
......@@ -10,7 +10,7 @@ while ( ($file = shift(@ARGV)) ) {
$printed_header = 0;
$file =~ s,.*/,,;
while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "\t_$1\n";
}
}
......
......@@ -10,7 +10,7 @@ while ( ($file = shift(@ARGV)) ) {
$printed_header = 0;
$file =~ s,.*/,,;
while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "\t$1\n";
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment