diff options
author | Brian Paul <[email protected]> | 1999-11-08 07:36:43 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-11-08 07:36:43 +0000 |
commit | 327c69127cf6203681d418a76186f70cc71b9212 (patch) | |
tree | afe558bcc8862b3f703bac3c8f9bcdb7e02339ae /src/mesa/main/extensions.c | |
parent | 787250cc0130a6c72f97078670988e8900c77e95 (diff) |
clean-up of header includes (Daryll)
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index b233d1483e0..80918ca1857 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.9 1999/10/16 11:30:31 brianp Exp $ */ +/* $Id: extensions.c,v 1.10 1999/11/08 07:36:44 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -25,7 +25,11 @@ */ +#ifndef XFree86Server #include <stdlib.h> +#else +#include "GL/xf86glx.h" +#endif #include "context.h" #include "extensions.h" #include "simple_list.h" |