diff options
Diffstat (limited to 'include/GL/glext.h')
-rw-r--r-- | include/GL/glext.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/GL/glext.h b/include/GL/glext.h index 777cc03936a..7f1f938c4ce 100644 --- a/include/GL/glext.h +++ b/include/GL/glext.h @@ -3290,7 +3290,11 @@ typedef GLboolean (APIENTRYP PFNGLISPROGRAMARBPROC) (GLuint program); #define GL_ARB_vertex_buffer_object 1 /* GL types for handling large vertex buffer objects */ /* Only used by this extension for now; later needs to be moved earlier in glext.h */ +#ifndef XFree86Server #include <stddef.h> +#else +#define ptrdiff_t int +#endif typedef ptrdiff_t GLintptrARB; typedef ptrdiff_t GLsizeiptrARB; #ifdef GL_GLEXT_PROTOTYPES |