glcpp: Add missing include in xtalloc.c
authorCarl Worth <cworth@cworth.org>
Tue, 20 Jul 2010 22:56:02 +0000 (15:56 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Wed, 21 Jul 2010 00:01:12 +0000 (17:01 -0700)
Without this, the compiler was legitimately complaining about missing
declarations for all of the functions being defined here.

src/glsl/glcpp/xtalloc.c

index 656ac2d6cb5bff989f62462fff0e147432e643d2..a20ea8b93fa081aa5b2a0f2f1e05bcb6320719ab 100644 (file)
@@ -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)