Changeset e9690b6 in mainline for abi/include/_bits/stdint.h


Ignore:
Timestamp:
2017-10-25T00:25:10Z (7 years ago)
Author:
jzr <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7c50de5a
Parents:
1c95fd0
Message:

Allow disabling intmax_t in downstream code (used in coastline).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • abi/include/_bits/stdint.h

    r1c95fd0 re9690b6  
    155155#define UINTPTR_MAX  __UINTPTR_MAX__
    156156
     157#ifndef __HELENOS_DISABLE_INTMAX__
     158
    157159typedef __INTMAX_TYPE__  intmax_t;
    158160typedef __UINTMAX_TYPE__ uintmax_t;
     
    165167#define INTMAX_C(x)   __INTMAX_C(x)
    166168#define UINTMAX_C(x)  __UINTMAX_C(x)
     169
     170#endif  /* __HELENOS_DISABLE_INTMAX__ */
    167171
    168172#define PTRDIFF_MIN  __PTRDIFF_MIN__
Note: See TracChangeset for help on using the changeset viewer.