diff options
author | Matt Turner <[email protected]> | 2012-07-21 09:06:11 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2012-07-22 14:06:08 -0700 |
commit | cfdf60f236a525a0309146ce2da156bd3856c8b7 (patch) | |
tree | 41ade43d902dd16ca798e7fbc82187a130cc23d5 /src/mesa/main/imports.h | |
parent | f96405f254819238ef6bce8e7341fcc7d00eaf85 (diff) |
imports.h: Correct ceilf typo.
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 0fc8f5509f9..73913b5ab7a 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -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)) |