Changeset e9690b6 in mainline for abi/include/_bits/inttypes.h
- 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
- File:
-
- 1 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
Note:
See TracChangeset
for help on using the changeset viewer.