(svn r2733) -Fix: [OSX] solved include issue introduced in 2714, which prevented OSX from opening a window to run the game in (sdl.h was not included anymore)
--- a/unix.c Thu Jul 28 06:09:15 2005 +0000
+++ b/unix.c Thu Jul 28 08:45:57 2005 +0000
@@ -39,6 +39,7 @@
#endif
#if defined(__APPLE__)
+#include <SDL.h> //the mac implementation needs this file included in the same file as main()
#include "os/macosx/macos.h"
#endif