mesa: remove logf macro

Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Brian Paul 2015-02-24 09:31:34 -07:00
parent f5816d77e2
commit cffedcf163
2 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,6 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type;
#define ceilf(f) ((float) ceil(f))
#define expf(f) ((float) exp(f))
#define floorf(f) ((float) floor(f))
#define logf(f) ((float) log(f))
#define sqrtf(f) ((float) sqrt(f))
#endif

View File

@ -23,6 +23,7 @@
*/
#include "c99_math.h"
#include "main/glheader.h"
#include "main/imports.h"
#include "main/macros.h"