Remove unused headers and defines.

This commit is contained in:
Lee, Jae-Hong 2013-05-09 20:54:23 +09:00
parent ab8c0becbf
commit 43b11a73d6
1 changed files with 0 additions and 12 deletions

View File

@ -27,15 +27,9 @@ THE SOFTWARE.
#include "platform/CCPlatformMacros.h"
#include <float.h>
#include <math.h>
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>
#include <stdint.h>
#ifndef MIN
#define MIN(x,y) (((x) > (y)) ? (y) : (x))
@ -45,10 +39,4 @@ THE SOFTWARE.
#define MAX(x,y) (((x) < (y)) ? (y) : (x))
#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__