diff options
author | Carl Worth <[email protected]> | 2010-07-20 15:56:02 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-07-20 17:01:12 -0700 |
commit | 942ccc517012e360a7e30d3322331c8450dda022 (patch) | |
tree | 27e7f17cae12f06f45bf17c55519df63d85f0934 /src/glsl | |
parent | d80dcaf427e12a5cba9cfc5bcd1b485572a2714b (diff) |
glcpp: Add missing include in xtalloc.c
Without this, the compiler was legitimately complaining about missing
declarations for all of the functions being defined here.
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/glcpp/xtalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/glcpp/xtalloc.c b/src/glsl/glcpp/xtalloc.c index 656ac2d6cb5..a20ea8b93fa 100644 --- a/src/glsl/glcpp/xtalloc.c +++ b/src/glsl/glcpp/xtalloc.c @@ -21,7 +21,7 @@ * DEALINGS IN THE SOFTWARE. */ -#include <talloc.h> +#include "glcpp.h" void * xtalloc_named_const (const void *context, size_t size, const char *name) |