summaryrefslogtreecommitdiff
path: root/src/glsl/glcpp
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2010-07-20 15:56:02 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-07-20 17:01:12 -0700
commit942ccc517012e360a7e30d3322331c8450dda022 (patch)
tree27e7f17cae12f06f45bf17c55519df63d85f0934 /src/glsl/glcpp
parentd80dcaf427e12a5cba9cfc5bcd1b485572a2714b (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/glcpp')
-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)