Rev 3779 | Rev 4021 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3779 | Rev 3878 | ||
---|---|---|---|
Line 65... | Line 65... | ||
65 | typedef uint64_t unative_t; |
65 | typedef uint64_t unative_t; |
66 | typedef int64_t native_t; |
66 | typedef int64_t native_t; |
67 | 67 | ||
68 | typedef uintptr_t ioport_t; |
68 | typedef uintptr_t ioport_t; |
69 | 69 | ||
- | 70 | typedef struct { |
|
- | 71 | unative_t fnc; |
|
- | 72 | unative_t gp; |
|
- | 73 | } fncptr_t; |
|
- | 74 | ||
70 | #define PRIp "lx" /**< Format for uintptr_t. */ |
75 | #define PRIp "lx" /**< Format for uintptr_t. */ |
71 | #define PRIs "lu" /**< Format for size_t. */ |
76 | #define PRIs "lu" /**< Format for size_t. */ |
72 | #define PRIc "lu" /**< Format for count_t. */ |
77 | #define PRIc "lu" /**< Format for count_t. */ |
73 | #define PRIi "lu" /**< Format for index_t. */ |
78 | #define PRIi "lu" /**< Format for index_t. */ |
74 | 79 |