Changeset 83253ad in mainline for arch/sparc64/loader/types.h
- Timestamp:
- 2006-07-04T17:17:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 822b64e
- Parents:
- fec35544
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/loader/types.h
rfec35544 r83253ad 32 32 #include <gentypes.h> 33 33 34 typedef signed char __s8;34 typedef signed char int8_t; 35 35 36 typedef unsigned char __u8;37 typedef unsigned short __u16;38 typedef unsigned int __u32;39 typedef unsigned long __u64;36 typedef unsigned char uint8_t; 37 typedef unsigned short uint16_t; 38 typedef unsigned int uint32_t; 39 typedef unsigned long uint64_t; 40 40 41 typedef __u64 __address;42 typedef __u64 __native;41 typedef uint64_t uintptr_t; 42 typedef uint64_t unative_t; 43 43 44 44 #endif
Note:
See TracChangeset
for help on using the changeset viewer.