Commit 4d10d9d0092362a9f9fa5f03e2ee2695f29d3e5f

sammy 2008-04-04T11:19:57

* Put standard system headers first because on Windows glut.h uses exit().

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/demo/FTGLDemo.cpp b/demo/FTGLDemo.cpp
index a993b4c..0fc0b22 100644
--- a/demo/FTGLDemo.cpp
+++ b/demo/FTGLDemo.cpp
@@ -1,12 +1,12 @@
+#include <stdlib.h>
+#include <stdio.h>
+
 #ifdef __APPLE_CC__
 	#include <GLUT/glut.h>
 #else
 	#include <GL/glut.h>
 #endif
 
-#include <stdlib.h>
-#include <stdio.h>
-
 #include "tb.h"
 
 #include "FTGLExtrdFont.h"