Changeset 3e828ea in mainline for abi/include/limits.h
- Timestamp:
- 2019-09-23T12:49:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9be2358
- Parents:
- 9259d20 (diff), 1a4ec93f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- Jiri Svoboda <jiri@…> (2019-09-22 12:49:07)
- git-committer:
- Jiri Svoboda <jiri@…> (2019-09-23 12:49:29)
- File:
-
- 1 edited
-
abi/include/limits.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
abi/include/limits.h
r9259d20 r3e828ea 84 84 #define MB_LEN_MAX 4 85 85 86 #ifdef _HELENOS_SOURCE 86 87 #define UCHAR_MIN 0 87 88 #define USHRT_MIN 0 … … 89 90 #define ULONG_MIN (0ul) 90 91 #define ULLONG_MIN (0ull) 92 #define SSIZE_MIN INTPTR_MIN 93 #define UINT8_MIN 0 94 #define UINT16_MIN 0 95 #define UINT32_MIN 0 96 #define UINT64_MIN 0 97 #endif 98 99 #if defined(_HELENOS_SOURCE) || defined(_POSIX_SOURCE) || \ 100 defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \ 101 defined(_GNU_SOURCE) || defined(_BSD_SOURCE) 102 103 #define SSIZE_MAX INTPTR_MAX 104 #define NAME_MAX 255 105 106 #endif 91 107 92 108 /* GCC's <limits.h> doesn't define these for C++11, even though it should. */
Note:
See TracChangeset
for help on using the changeset viewer.
