mirror of https://github.com/axmolengine/axmol.git
Remove unused headers and defines.
This commit is contained in:
parent
ab8c0becbf
commit
43b11a73d6
|
@ -27,15 +27,9 @@ THE SOFTWARE.
|
||||||
|
|
||||||
#include "platform/CCPlatformMacros.h"
|
#include "platform/CCPlatformMacros.h"
|
||||||
|
|
||||||
#include <float.h>
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <string.h>
|
|
||||||
#include <stdarg.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <time.h>
|
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
#ifndef MIN
|
#ifndef MIN
|
||||||
#define MIN(x,y) (((x) > (y)) ? (y) : (x))
|
#define MIN(x,y) (((x) > (y)) ? (y) : (x))
|
||||||
|
@ -45,10 +39,4 @@ THE SOFTWARE.
|
||||||
#define MAX(x,y) (((x) < (y)) ? (y) : (x))
|
#define MAX(x,y) (((x) < (y)) ? (y) : (x))
|
||||||
#endif // MAX
|
#endif // MAX
|
||||||
|
|
||||||
// some function linux do not have
|
|
||||||
#define tanf tan
|
|
||||||
#define sqrtf sqrt
|
|
||||||
#define cosf cos
|
|
||||||
#define sinf sin
|
|
||||||
|
|
||||||
#endif // __CC_STD_C_H__
|
#endif // __CC_STD_C_H__
|
||||||
|
|
Loading…
Reference in New Issue