diff options
author | Brian <[email protected]> | 2007-04-26 07:46:59 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-04-26 07:46:59 -0600 |
commit | f42d4ab41ed5d6a160e9902cd9e81ca644e31a35 (patch) | |
tree | 07efb1f118d4c583af30e98d8b4bef6ae06c8edc /progs/demos/tessdemo.c | |
parent | 4a28548cbfa425edd8b8ad16c93869a9c612a42f (diff) |
move #include <GL/glut.h> after other #includes for Windows
Diffstat (limited to 'progs/demos/tessdemo.c')
-rw-r--r-- | progs/demos/tessdemo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/demos/tessdemo.c b/progs/demos/tessdemo.c index 26403eee0a2..f71cea12744 100644 --- a/progs/demos/tessdemo.c +++ b/progs/demos/tessdemo.c @@ -4,10 +4,10 @@ * Updated for GLU 1.3 tessellation by Gareth Hughes <[email protected]> */ -#include <GL/glut.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <GL/glut.h> #define MAX_POINTS 256 #define MAX_CONTOURS 32 |