Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Apr 13, 2002
1 parent dde00a0 commit 961a9b9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/beos/exports/genexp.pl
Expand Up @@ -9,7 +9,7 @@
}
$file =~ s,.*/,,;
while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "_$1\n";
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/macos/exports/gendef.pl
Expand Up @@ -10,7 +10,7 @@
$printed_header = 0;
$file =~ s,.*/,,;
while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "\t$1\n";
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/macosx/exports/gendef.pl
Expand Up @@ -10,7 +10,7 @@
$printed_header = 0;
$file =~ s,.*/,,;
while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "\t_$1\n";
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/win32/exports/gendef.pl
Expand Up @@ -10,7 +10,7 @@
$printed_header = 0;
$file =~ s,.*/,,;
while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "\t$1\n";
}
}
Expand Down

0 comments on commit 961a9b9

Please sign in to comment.