diff options
author | Jouk Jansen <[email protected]> | 1999-09-13 14:31:32 +0000 |
---|---|---|
committer | Jouk Jansen <[email protected]> | 1999-09-13 14:31:32 +0000 |
commit | 70cf58648a23543bc915028eba89ec1fc1685c1e (patch) | |
tree | cd8434167bd9e6fe2d93ce0e01704690f61efb89 /src/glu | |
parent | eada67136ac0b9377da9e176865d2d2a3c7638fe (diff) |
strcmp needs the string.h
Diffstat (limited to 'src/glu')
-rw-r--r-- | src/glu/mesa/glu.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/glu/mesa/glu.c b/src/glu/mesa/glu.c index 5ce66151d9e..be73335ad7e 100644 --- a/src/glu/mesa/glu.c +++ b/src/glu/mesa/glu.c @@ -1,4 +1,4 @@ -/* $Id: glu.c,v 1.5 1999/09/11 12:04:54 brianp Exp $ */ +/* $Id: glu.c,v 1.6 1999/09/13 14:31:32 joukj Exp $ */ /* * Mesa 3-D graphics library @@ -23,6 +23,10 @@ /* * $Log: glu.c,v $ + * Revision 1.6 1999/09/13 14:31:32 joukj + * + * strcmp needs the string.h + * * Revision 1.5 1999/09/11 12:04:54 brianp * added 1.2 function to gluGetProcAddressEXT() * @@ -86,6 +90,7 @@ #include <math.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include "gluP.h" #endif |