From: Carl Worth Date: Tue, 20 Jul 2010 22:56:02 +0000 (-0700) Subject: glcpp: Add missing include in xtalloc.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=942ccc517012e360a7e30d3322331c8450dda022;p=mesa.git 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. --- 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 +#include "glcpp.h" void * xtalloc_named_const (const void *context, size_t size, const char *name)