(svn r664) Fix warning on MorphOS
authortron
Wed, 17 Nov 2004 19:29:24 +0000
changeset 454 cf4f1bf2111f
parent 453 5a269236cefa
child 455 e7ac799e1437
(svn r664) Fix warning on MorphOS
sdl.c
--- a/sdl.c	Wed Nov 17 18:53:49 2004 +0000
+++ b/sdl.c	Wed Nov 17 19:29:24 2004 +0000
@@ -13,6 +13,8 @@
 #include <signal.h>
 
 #ifdef __MORPHOS__
+	// The system supplied definition of SIG_DFL is wrong on MorphOS
+	#undef SIG_DFL
 	#define SIG_DFL (void (*)(int))0
 #endif
 #endif