From 9dd7c284f0a91548dc80ea9145b0b58f6ddd2de7 Mon Sep 17 00:00:00 2001 From: tron Date: Wed, 17 Nov 2004 19:29:24 +0000 Subject: [PATCH] (svn r664) Fix warning on MorphOS --- sdl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdl.c b/sdl.c index 596807a4b0..21436023d2 100644 --- a/sdl.c +++ b/sdl.c @@ -13,6 +13,8 @@ #include #ifdef __MORPHOS__ + // The system supplied definition of SIG_DFL is wrong on MorphOS + #undef SIG_DFL #define SIG_DFL (void (*)(int))0 #endif #endif