--- a/src/main/beos/exports/genexp.pl Sat Apr 13 15:43:15 2002 +0000
+++ b/src/main/beos/exports/genexp.pl Sat Apr 13 18:08:45 2002 +0000
@@ -9,7 +9,7 @@
}
$file =~ s,.*/,,;
while (<FILE>) {
- if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
+ if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "_$1\n";
}
}
--- a/src/main/macos/exports/gendef.pl Sat Apr 13 15:43:15 2002 +0000
+++ b/src/main/macos/exports/gendef.pl Sat Apr 13 18:08:45 2002 +0000
@@ -10,7 +10,7 @@
$printed_header = 0;
$file =~ s,.*/,,;
while (<FILE>) {
- if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
+ if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "\t$1\n";
}
}
--- a/src/main/macosx/exports/gendef.pl Sat Apr 13 15:43:15 2002 +0000
+++ b/src/main/macosx/exports/gendef.pl Sat Apr 13 18:08:45 2002 +0000
@@ -10,7 +10,7 @@
$printed_header = 0;
$file =~ s,.*/,,;
while (<FILE>) {
- if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
+ if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "\t_$1\n";
}
}
--- a/src/main/win32/exports/gendef.pl Sat Apr 13 15:43:15 2002 +0000
+++ b/src/main/win32/exports/gendef.pl Sat Apr 13 18:08:45 2002 +0000
@@ -10,7 +10,7 @@
$printed_header = 0;
$file =~ s,.*/,,;
while (<FILE>) {
- if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
+ if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "\t$1\n";
}
}