From: Richard Rauch Date: Mon, 22 Sep 2003 19:01:55 +0000 (+0000) Subject: Moved the #include/#ifdef/#define stuff up to the top. X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=54e835334fb3e039ad92236fc88801ec485c8152;p=freeglut Moved the #include/#ifdef/#define stuff up to the top. Changed #ifdef to #if, per Nigel(?)'s comment. Ooops. git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@201 7f0cb862-5218-0410-a997-914c9d46530a --- diff --git a/src/freeglut_main.c b/src/freeglut_main.c index 0745873..1ef3d2b 100644 --- a/src/freeglut_main.c +++ b/src/freeglut_main.c @@ -34,6 +34,25 @@ #include "../include/GL/freeglut.h" #include "freeglut_internal.h" +#include +#if TARGET_HOST_UNIX_X11 +#include +#include +#include +#include +#include +#elif TARGET_HOST_WIN32 +#endif + +#ifndef MAX +#define MAX(a,b) (((a)>(b)) ? (a) : (b)) +#endif + +#ifndef MIN +#define MIN(a,b) (((a)<(b)) ? (a) : (b)) +#endif + + /* * TODO BEFORE THE STABLE RELEASE: * @@ -399,22 +418,6 @@ void fgWarning( const char *fmt, ... ) va_end( ap ); } -#include -#ifdef TARGET_HOST_UNIX_X11 -#include -#include -#include -#include -#include -#elif TARGET_HOST_WIN32 -#endif -#ifndef MAX -#define MAX(a,b) (((a)>(b)) ? (a) : (b)) -#endif -#ifndef MIN -#define MIN(a,b) (((a)<(b)) ? (a) : (b)) -#endif - /* * Indicates whether Joystick events are being used by ANY window. * @@ -480,7 +483,7 @@ static long fgNextTimer( void ) */ static void fgSleepForEvents( void ) { -#ifdef TARGET_HOST_UNIX_X11 +#if TARGET_HOST_UNIX_X11 fd_set fdset; int err; int socket;