Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / modules / network / SMSTCPIP / include / arch / cc.h
blobe0a8ce83756aa48328dbde7c83694cb24811cc2d
1 #ifndef __CC_H__
2 # define __CC_H__
4 # define BYTE_ORDER LITTLE_ENDIAN
6 typedef unsigned char u8_t;
7 typedef signed char s8_t;
8 typedef unsigned short u16_t;
9 typedef signed short s16_t;
10 typedef unsigned long u32_t;
11 typedef signed long s32_t;
13 typedef u32_t mem_ptr_t;
15 # define PACK_STRUCT_FIELD( x ) x __attribute__( ( packed ) )
16 # define PACK_STRUCT_STRUCT __attribute__( ( packed ) )
17 #endif /* __CC_H__ */