Changeset 76ca3f7 in mainline for kernel/arch/ppc32/include/types.h
- Timestamp:
- 2010-03-23T20:49:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e417b96
- Parents:
- b48ebd19 (diff), 63f8966 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/include/types.h
rb48ebd19 r76ca3f7 36 36 #define KERN_ppc32_TYPES_H_ 37 37 38 typedef signed char int8_t;39 typedef signed short int16_t;40 typedef signed int int32_t;41 typedef signed long long int64_t;42 43 typedef unsigned char uint8_t;44 typedef unsigned short uint16_t;45 typedef unsigned int uint32_t;46 typedef unsigned long long uint64_t;47 48 38 typedef uint32_t size_t; 49 39 … … 61 51 62 52 /**< Formats for uintptr_t, size_t */ 63 #define PRIp "x"64 #define PRIs "u"53 #define PRIp "x" 54 #define PRIs "u" 65 55 66 56 /**< Formats for (u)int8_t, (u)int16_t, (u)int32_t, (u)int64_t and (u)native_t */ 67 #define PRId8 "d"68 #define PRId16 "d"69 #define PRId32 "d"70 #define PRId64 "lld"71 #define PRIdn "d"57 #define PRId8 "d" 58 #define PRId16 "d" 59 #define PRId32 "d" 60 #define PRId64 "lld" 61 #define PRIdn "d" 72 62 73 #define PRIu8 "u"74 #define PRIu16 "u"75 #define PRIu32 "u"76 #define PRIu64 "llu"77 #define PRIun "u"63 #define PRIu8 "u" 64 #define PRIu16 "u" 65 #define PRIu32 "u" 66 #define PRIu64 "llu" 67 #define PRIun "u" 78 68 79 #define PRIx8 "x"80 #define PRIx16 "x"81 #define PRIx32 "x"82 #define PRIx64 "llx"83 #define PRIxn "x"69 #define PRIx8 "x" 70 #define PRIx16 "x" 71 #define PRIx32 "x" 72 #define PRIx64 "llx" 73 #define PRIxn "x" 84 74 85 75 #endif
Note:
See TracChangeset
for help on using the changeset viewer.