Changeset 7f1c620 in mainline for arch/mips32/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
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/include/types.h
r991779c5 r7f1c620 38 38 #define NULL 0 39 39 40 typedef signed char __s8;41 typedef unsigned char __u8;40 typedef signed char int8_t; 41 typedef unsigned char uint8_t; 42 42 43 typedef signed short __s16;44 typedef unsigned short __u16;43 typedef signed short int16_t; 44 typedef unsigned short uint16_t; 45 45 46 typedef unsigned long __u32;47 typedef signed long __s32;46 typedef unsigned long uint32_t; 47 typedef signed long int32_t; 48 48 49 typedef unsigned long long __u64;50 typedef signed long long __s64;49 typedef unsigned long long uint64_t; 50 typedef signed long long int64_t; 51 51 52 typedef __u32 __address;52 typedef uint32_t uintptr_t; 53 53 54 typedef __u32ipl_t;54 typedef uint32_t ipl_t; 55 55 56 typedef __u32 __native;57 typedef __s32 __snative;56 typedef uint32_t unative_t; 57 typedef int32_t native_t; 58 58 59 59 typedef struct pte pte_t; 60 60 61 typedef __u32pfn_t;61 typedef uint32_t pfn_t; 62 62 63 63 #endif
Note:
See TracChangeset
for help on using the changeset viewer.