diff options
author | Carl Worth <cworth@cworth.org> | 2010-07-20 15:56:02 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-07-20 15:56:02 -0700 |
commit | 01c1ba7966e79e8eafffe3d5b62e6b8b50b481c6 (patch) | |
tree | d27a60e5ae61ede4a05b2d506ac312c7ca868fe3 | |
parent | 80651b084ea3a4732a7164e1469e8b487d695e06 (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.
-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 656ac2d6cb..a20ea8b93f 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) |