diff options
author | Vinson Lee <vlee@vmware.com> | 2010-01-10 03:03:14 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-01-10 03:03:14 -0800 |
commit | b9bd96608c88c0b3decddc80f0d49f670fc90466 (patch) | |
tree | 2905f015ab0a5a0e569bb225c0a09ae2e987405d /src/glu | |
parent | 199dedd6dd06e7f647dc6741611c06954aca3c77 (diff) |
glu/sgi: Include missing header file.
Diffstat (limited to 'src/glu')
-rw-r--r-- | src/glu/sgi/libnurbs/internals/simplemath.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glu/sgi/libnurbs/internals/simplemath.h b/src/glu/sgi/libnurbs/internals/simplemath.h index 0a060c57ea..d00062dc70 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; } |