From: Vinson Lee Date: Sun, 10 Jan 2010 11:03:14 +0000 (-0800) Subject: glu/sgi: Include missing header file. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b9bd96608c88c0b3decddc80f0d49f670fc90466;p=mesa.git glu/sgi: Include missing header file. --- diff --git a/src/glu/sgi/libnurbs/internals/simplemath.h b/src/glu/sgi/libnurbs/internals/simplemath.h index 0a060c57ead..d00062dc700 100644 --- a/src/glu/sgi/libnurbs/internals/simplemath.h +++ b/src/glu/sgi/libnurbs/internals/simplemath.h @@ -38,6 +38,8 @@ /* simple inline routines */ +#include "types.h" + inline int max( int x, int y ) { return ( x < y ) ? y : x; }