diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-06-24 10:17:32 +0900 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-06-24 11:00:01 +0900 |
commit | 543bba6ee3a1b3a947d1dfaca75e820ef7b98843 (patch) | |
tree | 86ace387c39f369c745d941d55a06a7554198870 /include | |
parent | 89e9d6b6db933c870443714c3d7c9539d117cddf (diff) |
mesa: Don't include sys/types.h on WinCE.
We probably shouldn't be including sys/types.h at all, but let's leave that
for another time.
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/internal/glcore.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/GL/internal/glcore.h b/include/GL/internal/glcore.h index fc0aaf3d5e..d62f31bb29 100644 --- a/include/GL/internal/glcore.h +++ b/include/GL/internal/glcore.h @@ -36,7 +36,9 @@ ** */ +#if !defined(_WIN32_WCE) #include <sys/types.h> +#endif #define GL_CORE_SGI 1 #define GL_CORE_MESA 2 |