Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1764 → Rev 1779

/boot/trunk/arch/mips32/loader/types.h
31,14 → 31,14
 
#include <gentypes.h>
 
typedef signed char __s8;
typedef signed char int8_t;
 
typedef unsigned char __u8;
typedef unsigned short __u16;
typedef unsigned int __u32;
typedef unsigned long long __u64;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long long uint64_t;
 
typedef __u32 __address;
typedef __u32 __native;
typedef uint32_t uintptr_t;
typedef uint32_t unative_t;
 
#endif