From 4d8a8e708597d31bbb77dcecf1b5f265883166fd Mon Sep 17 00:00:00 2001 From: rkrolib Date: Mon, 22 Sep 2003 19:01:55 +0000 Subject: [PATCH] Moved the #include/#ifdef/#define stuff up to the top. Changed #ifdef to #if, per Nigel(?)'s comment. Ooops. git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@201 7f0cb862-5218-0410-a997-914c9d46530a --- freeglut/freeglut/src/freeglut_main.c | 37 +++++++++++++++------------ 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/freeglut/freeglut/src/freeglut_main.c b/freeglut/freeglut/src/freeglut_main.c index 0745873..1ef3d2b 100644 --- a/freeglut/freeglut/src/freeglut_main.c +++ b/freeglut/freeglut/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;