Changeset 18acad5 in mainline
- Timestamp:
- 2006-03-14T13:03:35Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 79522a7
- Parents:
- 4ba1db5
- Location:
- libc/arch
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/arch/amd64/include/types.h
r4ba1db5 r18acad5 34 34 typedef signed int ssize_t; 35 35 36 typedef char int8_t; 37 typedef short int int16_t; 38 typedef int int32_t; 39 typedef long long int int64_t; 40 41 typedef unsigned char uint8_t; 42 typedef unsigned short int uint16_t; 43 typedef unsigned int uint32_t; 44 typedef unsigned long long int uint64_t; 45 36 46 #endif -
libc/arch/ia64/include/types.h
r4ba1db5 r18acad5 34 34 typedef signed int ssize_t; 35 35 36 typedef char int8_t; 37 typedef short int int16_t; 38 typedef int int32_t; 39 typedef long int int64_t; 40 41 typedef unsigned char uint8_t; 42 typedef unsigned short int uint16_t; 43 typedef unsigned int uint32_t; 44 typedef unsigned long int uint64_t; 45 36 46 #endif -
libc/arch/mips32/include/types.h
r4ba1db5 r18acad5 34 34 typedef signed int ssize_t; 35 35 36 typedef char int8_t; 37 typedef short int int16_t; 38 typedef long int int32_t; 39 typedef long long int int64_t; 40 41 typedef unsigned char uint8_t; 42 typedef unsigned short int uint16_t; 43 typedef unsigned long int uint32_t; 44 typedef unsigned long long int uint64_t; 45 36 46 #endif
Note:
See TracChangeset
for help on using the changeset viewer.