Changeset dc0b964 in mainline for kernel/arch/ia64/include/types.h
- Timestamp:
- 2010-11-24T14:23:14Z (12 years ago)
- Branches:
- lfn, master, serial
- Children:
- 85369b1, b89e1d3
- Parents:
- 8b3bff5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/include/types.h
r8b3bff5 rdc0b964 52 52 } __attribute__((may_alias)) fncptr_t; 53 53 54 #define PRIp "lx" /**< Format for uintptr_t. */ 55 #define PRIs "lu" /**< Format for size_t. */ 56 57 #define PRId8 "d" /**< Format for int8_t. */ 58 #define PRId16 "d" /**< Format for int16_t. */ 59 #define PRId32 "d" /**< Format for int32_t. */ 60 #define PRId64 "ld" /**< Format for int64_t. */ 61 #define PRIdn "d" /**< Format for native_t. */ 62 63 #define PRIu8 "u" /**< Format for uint8_t. */ 64 #define PRIu16 "u" /**< Format for uint16_t. */ 65 #define PRIu32 "u" /**< Format for uint32_t. */ 66 #define PRIu64 "lu" /**< Format for uint64_t. */ 67 #define PRIun "u" /**< Format for unative_t. */ 68 69 #define PRIx8 "x" /**< Format for hexadecimal (u)int8_t. */ 70 #define PRIx16 "x" /**< Format for hexadecimal (u)int16_t. */ 71 #define PRIx32 "x" /**< Format for hexadecimal (u)uint32_t. */ 72 #define PRIx64 "lx" /**< Format for hexadecimal (u)int64_t. */ 73 #define PRIxn "x" /**< Format for hexadecimal (u)native_t. */ 54 #define PRIp PRIx64 /**< Format for uintptr_t. */ 55 #define PRIs PRIu64 /**< Format for size_t. */ 56 #define PRIdn PRId64 /**< Format for native_t. */ 57 #define PRIun PRIu64 /**< Format for unative_t. */ 58 #define PRIxn PRIx64 /**< Format for hexadecimal unative_t. */ 74 59 75 60 #endif
Note: See TracChangeset
for help on using the changeset viewer.