diff options
author | Karl Schultz <[email protected]> | 2001-10-04 19:14:26 +0000 |
---|---|---|
committer | Karl Schultz <[email protected]> | 2001-10-04 19:14:26 +0000 |
commit | bffae58175b50bda3cc258c5aecb389adb2d9b5e (patch) | |
tree | a8fdea1a0a9eb939711dcee68a98b1281c94a014 /progs/demos/isosurf.c | |
parent | 3978d026eaf3d449adaecf336a1fa9d7e631dc19 (diff) |
Allow to compile in Windows.
Diffstat (limited to 'progs/demos/isosurf.c')
-rw-r--r-- | progs/demos/isosurf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/progs/demos/isosurf.c b/progs/demos/isosurf.c index 2706ad9faef..437cdf40437 100644 --- a/progs/demos/isosurf.c +++ b/progs/demos/isosurf.c @@ -1,4 +1,4 @@ -/* $Id: isosurf.c,v 1.12 2001/06/04 15:34:31 keithw Exp $ */ +/* $Id: isosurf.c,v 1.13 2001/10/04 19:14:26 kschultz Exp $ */ /* * Display an isosurface of 3-D wind speed volume. @@ -30,6 +30,9 @@ #include <stdlib.h> #include <string.h> #include <math.h> +#ifdef _WIN32 +#include <windows.h> +#endif #define GL_GLEXT_LEGACY #include "GL/glut.h" |