Changeset e9690b6 in mainline
- Timestamp:
- 2017-10-25T00:25:10Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7c50de5a
- Parents:
- 1c95fd0
- Location:
- abi/include/_bits
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
abi/include/_bits/inttypes.h
r1c95fd0 re9690b6 44 44 #include <_bits/wchar_t.h> 45 45 46 typedef struct {47 intmax_t quot;48 intmax_t rem;49 } imaxdiv_t;50 51 46 #define PRId8 __PRId8__ 52 47 #define PRIdLEAST8 __PRId8__ … … 237 232 #define SCNxPTR __SCNxPTR__ 238 233 234 #ifndef __HELENOS_DISABLE_INTMAX__ 235 239 236 #define PRIdMAX __PRIdMAX__ 240 237 #define PRIiMAX __PRIiMAX__ … … 249 246 #define SCNxMAX __SCNxMAX__ 250 247 248 typedef struct { 249 intmax_t quot; 250 intmax_t rem; 251 } imaxdiv_t; 252 253 #endif /* __HELENOS_DISABLE_INTMAX__ */ 254 251 255 #endif 252 256 -
abi/include/_bits/macros.h
r1c95fd0 re9690b6 578 578 #endif 579 579 580 #ifndef __HELENOS_DISABLE_INTMAX__ 581 580 582 #if !defined(__INTMAX_TYPE__) || !defined(__INTMAX_MAX__) 581 583 #error HelenOS expects __INTMAX_TYPE__ and __INTMAX_MAX__ \ … … 640 642 #define __SCNxMAX__ "jx" 641 643 644 #endif /* __HELENOS_DISABLE_INTMAX__ */ 645 642 646 #ifndef __SIZEOF_FLOAT__ 643 647 #error HelenOS expects __SIZEOF_FLOAT__ to be defined. -
abi/include/_bits/stdint.h
r1c95fd0 re9690b6 155 155 #define UINTPTR_MAX __UINTPTR_MAX__ 156 156 157 #ifndef __HELENOS_DISABLE_INTMAX__ 158 157 159 typedef __INTMAX_TYPE__ intmax_t; 158 160 typedef __UINTMAX_TYPE__ uintmax_t; … … 165 167 #define INTMAX_C(x) __INTMAX_C(x) 166 168 #define UINTMAX_C(x) __UINTMAX_C(x) 169 170 #endif /* __HELENOS_DISABLE_INTMAX__ */ 167 171 168 172 #define PTRDIFF_MIN __PTRDIFF_MIN__
Note:
See TracChangeset
for help on using the changeset viewer.