Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1778 → Rev 1779

/boot/trunk/arch/ppc64/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 __u64;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long uint64_t;
 
typedef __u64 __address;
typedef __u64 __native;
typedef uint64_t uintptr_t;
typedef uint64_t unative_t;
 
#endif