diff options
author | Brian Paul <brianp@vmware.com> | 2009-09-22 13:19:05 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-09-22 13:19:15 -0600 |
commit | bc7546476078dd520af4853f6f0d3f577ec670ec (patch) | |
tree | 4dfdeb70fc9b5541d182d53ceed6038288ec58c4 | |
parent | 52cadf7592c980eb9cebb1e2b50b552bb61d9f21 (diff) |
glx: include string.h to silence missing memset() prototype warning
-rw-r--r-- | src/glx/x11/glxhash.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glx/x11/glxhash.c b/src/glx/x11/glxhash.c index 7d28ada49c..6f2c51d39d 100644 --- a/src/glx/x11/glxhash.c +++ b/src/glx/x11/glxhash.c @@ -77,6 +77,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #define HASH_MAGIC 0xdeadbeef #define HASH_DEBUG 0 |