diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2005-08-15 23:25:33 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2005-08-15 23:25:33 +0000 |
commit | 160b3284dd3cdad106ad9aebf5fed7e9ff7b142b (patch) | |
tree | d02666cbd2d4a656eba1f22e2bfa27ceee7f95bc /include/GL | |
parent | c2c2600728f944efd6c236804571acb357b8f449 (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.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/GL/glxext.h b/include/GL/glxext.h index ed38b489d8..589d1ef363 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 |