changeset 345:05b97424225f

*** empty log message ***
author Sam Lantinga <slouken@libsdl.org>
date Sat, 13 Apr 2002 18:08:45 +0000
parents 7a69392b8599
children a18ea34d9efe
files src/main/beos/exports/genexp.pl src/main/macos/exports/gendef.pl src/main/macosx/exports/gendef.pl src/main/win32/exports/gendef.pl
diffstat 4 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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";
 		}
 	}