Changeset 7f1c620 in mainline for arch/ppc32/include/types.h
- Timestamp:
- 2006-07-04T17:17:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ffa3ef5
- Parents:
- 991779c5
- File:
-
- 1 edited
-
arch/ppc32/include/types.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/include/types.h
r991779c5 r7f1c620 38 38 #define NULL 0 39 39 40 typedef signed char __s8;41 typedef signed short __s16;42 typedef signed int __s32;43 typedef signed long long __s64;40 typedef signed char int8_t; 41 typedef signed short int16_t; 42 typedef signed int int32_t; 43 typedef signed long long int64_t; 44 44 45 typedef unsigned char __u8;46 typedef unsigned short __u16;47 typedef unsigned int __u32;48 typedef unsigned long long __u64;45 typedef unsigned char uint8_t; 46 typedef unsigned short uint16_t; 47 typedef unsigned int uint32_t; 48 typedef unsigned long long uint64_t; 49 49 50 typedef __u32 __address;51 typedef __u32pfn_t;50 typedef uint32_t uintptr_t; 51 typedef uint32_t pfn_t; 52 52 53 typedef __u32ipl_t;53 typedef uint32_t ipl_t; 54 54 55 typedef __u32 __native;55 typedef uint32_t unative_t; 56 56 57 57 /** Page Table Entry. */
Note:
See TracChangeset
for help on using the changeset viewer.
