- Fixed memory management.
[planlOS.git] / system / include / lwip / arch / cc.h
blob33af0273ba8fc6bb98d0c0dc0e9b70f33b2ffa9c
2 #ifndef LWIP_ARCH_CC_H_INCLUDED
3 #define LWIP_ARCH_CC_H_INCLUDED
5 #include <stdint.h>
6 #include <stdlib.h>
7 #include <string.h>
9 typedef uint32_t u32_t;
10 typedef uint16_t u16_t;
11 typedef uint8_t u8_t;
12 typedef int32_t s32_t;
13 typedef int16_t s16_t;
14 typedef int8_t s8_t;
15 typedef uintptr_t mem_ptr_t;
17 #define BYTE_ORDER LITTLE_ENDIAN
19 void LWIP_PLATFORM_ASSERT(char *msg);
21 #define PERF_START
22 #define PERF_STOP(x)
24 #endif