imports.h: Correct ceilf typo.
authorMatt Turner <mattst88@gmail.com>
Sat, 21 Jul 2012 16:06:11 +0000 (09:06 -0700)
committerMatt Turner <mattst88@gmail.com>
Sun, 22 Jul 2012 21:06:08 +0000 (14:06 -0700)
Reviewed-by: Brian Paul <brianp@vmware.com>
src/mesa/main/imports.h

index 0fc8f5509f9e7e7a3aa1cfe0177f19dc0f982774..73913b5ab7a3eee5722d6e85b20ec0e0f46f503b 100644 (file)
@@ -119,7 +119,7 @@ typedef union { GLfloat f; GLint i; } fi_type;
 #define asinf(f) ((float) asin(f))
 #define atan2f(x,y) ((float) atan2(x,y))
 #define atanf(f) ((float) atan(f))
-#define cielf(f) ((float) ciel(f))
+#define ceilf(f) ((float) ceil(f))
 #define cosf(f) ((float) cos(f))
 #define coshf(f) ((float) cosh(f))
 #define expf(f) ((float) exp(f))