12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef __CC_STD_C_H__
- #define __CC_STD_C_H__
- #include "platform/CCPlatformConfig.h"
- #if CC_TARGET_PLATFORM == CC_PLATFORM_IOS
- #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))
- #endif
- #ifndef MAX
- #define MAX(x,y) (((x) < (y)) ? (y) : (x))
- #endif
- #endif
- #endif
|