summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2010-07-20 15:56:02 -0700
committerCarl Worth <cworth@cworth.org>2010-07-20 15:56:02 -0700
commit01c1ba7966e79e8eafffe3d5b62e6b8b50b481c6 (patch)
treed27a60e5ae61ede4a05b2d506ac312c7ca868fe3
parent80651b084ea3a4732a7164e1469e8b487d695e06 (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.c2
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)