123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef __CC_STD_C_H__
- #define __CC_STD_C_H__
- #include "platform/CCPlatformConfig.h"
- #if CC_TARGET_PLATFORM == CC_PLATFORM_TIZEN
- #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>
- #include <limits.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
|