*** empty log message ***

This commit is contained in:
Sam Lantinga
2002-04-13 18:08:45 +00:00
parent 8fd8a04770
commit a93b6b5ebb
4 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ while ( ($file = shift(@ARGV)) ) {
}
$file =~ s,.*/,,;
while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "_$1\n";
}
}

View File

@@ -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";
}
}

View File

@@ -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";
}
}

View File

@@ -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";
}
}