blob: 065afa84f731ff45aa09ffa55049cb8dbf2459f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#ifndef __LWIP_ARCH_CC_H__
#define __LWIP_ARCH_CC_H__
#include <klibc/compiler.h>
#include <inttypes.h>
#include <errno.h>
#include <stdlib.h>
#include <kaboom.h>
#define BYTE_ORDER LITTLE_ENDIAN
typedef uint8_t u8_t;
typedef int8_t s8_t;
typedef uint16_t u16_t;
typedef int16_t s16_t;
typedef uint32_t u32_t;
typedef int32_t s32_t;
typedef uintptr_t mem_ptr_t;
#define PACK_STRUCT_STRUCT __packed
#define LWIP_PLATFORM_DIAG(x) ((void)0) /* For now... */
#define LWIP_PLATFORM_ASSERT(x) kaboom()
#define U16_F PRIu16
#define S16_F PRId16
#define X16_F PRIx16
#define U32_F PRIu16
#define S32_F PRId16
#define X32_F PRIx16
#define SZT_F "zu"
#endif /* __LWIP_ARCH_CC_H__ */
|