summaryrefslogtreecommitdiff
path: root/include/GL
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-08-15 23:25:33 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-08-15 23:25:33 +0000
commit160b3284dd3cdad106ad9aebf5fed7e9ff7b142b (patch)
treed02666cbd2d4a656eba1f22e2bfa27ceee7f95bc /include/GL
parentc2c2600728f944efd6c236804571acb357b8f449 (diff)
include stdint.h if WIN32 and GNUC (Colin Harrison). Patch forwarded to SGI.
Diffstat (limited to 'include/GL')
-rw-r--r--include/GL/glxext.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/GL/glxext.h b/include/GL/glxext.h
index ed38b489d83..589d1ef363e 100644
--- a/include/GL/glxext.h
+++ b/include/GL/glxext.h
@@ -347,6 +347,8 @@ typedef long long int int64_t;
#include <inttypes.h>
#elif defined(__SCO__) || defined(__USLC__)
#include <stdint.h>
+#elif defined(WIN32) && defined(__GNUC__)
+#include <stdint.h>
#endif
#ifndef GLX_VERSION_1_3