diff options
author | Vinson Lee <vlee@vmware.com> | 2009-07-01 15:40:56 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2009-07-01 15:40:56 -0700 |
commit | 83e49040a95b0e7009c66ac68b979cb97b9dc343 (patch) | |
tree | c5196862a204e0147a8a9a189d6ec00fd7e6271d /tests/general | |
parent | d524d1906de68e10d2b636f6415e439af2a4a207 (diff) |
scissor-stencil-clear: Fix compile errors with MSVC.
Diffstat (limited to 'tests/general')
-rw-r--r-- | tests/general/scissor-stencil-clear.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/general/scissor-stencil-clear.c b/tests/general/scissor-stencil-clear.c index 592c59106..169c86669 100644 --- a/tests/general/scissor-stencil-clear.c +++ b/tests/general/scissor-stencil-clear.c @@ -30,16 +30,15 @@ * Tests that glScissor properly affects glCopyPixels(). */ +#include <string.h> +#include <stdio.h> +#include <stdlib.h> +#include <math.h> #if defined(__APPLE__) #include <GLUT/glut.h> #else #include "GL/glut.h" #endif -#include <string.h> -#include <stdio.h> -#include <unistd.h> -#include <stdlib.h> -#include <math.h> #include "piglit-util.h" #define WIN_WIDTH 100 |