Changeset 99170e0c in mainline
- Timestamp:
- 2018-09-29T14:56:56Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1938b381
- Parents:
- 10d65d70
- Files:
-
- 1 deleted
- 9 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
abi/include/_bits/WEOF.h
r10d65d70 r99170e0c 41 41 #define _BITS_WEOF_H_ 42 42 43 #include <_bits/macros.h> 43 /* wint_t is always int */ 44 44 45 #define WEOF __WINT_EOF__45 #define WEOF (-1) 46 46 47 47 #endif -
abi/include/_bits/native.h
r10d65d70 r99170e0c 46 46 #define _BITS_NATIVE_H_ 47 47 48 #include < _bits/macros.h>48 #include <inttypes.h> 49 49 50 #define ATOMIC_COUNT_MIN __UINTPTR_MIN__ 51 #define ATOMIC_COUNT_MAX __UINTPTR_MAX__ 50 typedef uintptr_t pfn_t; 51 typedef uintptr_t ipl_t; 52 typedef uintptr_t sysarg_t; 53 typedef intptr_t native_t; 52 54 53 typedef __UINTPTR_TYPE__ pfn_t; 54 typedef __UINTPTR_TYPE__ ipl_t; 55 typedef __UINTPTR_TYPE__ sysarg_t; 56 typedef __INTPTR_TYPE__ native_t; 57 58 #define PRIdn __PRIdPTR__ /**< Format for native_t. */ 59 #define PRIun __PRIuPTR__ /**< Format for sysarg_t. */ 60 #define PRIxn __PRIxPTR__ /**< Format for hexadecimal sysarg_t. */ 55 #define PRIdn PRIdPTR /**< Format for native_t. */ 56 #define PRIun PRIuPTR /**< Format for sysarg_t. */ 57 #define PRIxn PRIxPTR /**< Format for hexadecimal sysarg_t. */ 61 58 62 59 #endif -
abi/include/_bits/ptrdiff_t.h
r10d65d70 r99170e0c 41 41 #define _BITS_PTRDIFF_T_H_ 42 42 43 #include <_bits/macros.h> 44 45 typedef __PTRDIFF_TYPE__ ptrdiff_t; 43 #define __need_ptrdiff_t 44 #include <stddef.h> 46 45 47 46 #endif -
abi/include/_bits/size_t.h
r10d65d70 r99170e0c 41 41 #define _BITS_SIZE_T_H_ 42 42 43 #include <_bits/macros.h> 44 45 typedef __SIZE_TYPE__ size_t; 43 #define __need_size_t 44 #include <stddef.h> 46 45 47 46 #endif -
abi/include/_bits/ssize_t.h
r10d65d70 r99170e0c 41 41 #define _BITS_SSIZE_T_H_ 42 42 43 #include < _bits/macros.h>43 #include <stdint.h> 44 44 45 typedef __PTRDIFF_TYPE__ssize_t;45 typedef intptr_t ssize_t; 46 46 47 #define SSIZE_MIN __PTRDIFF_MIN__48 #define SSIZE_MAX __PTRDIFF_MAX__47 #define SSIZE_MIN INTPTR_MIN 48 #define SSIZE_MAX INTPTR_MAX 49 49 50 50 #endif -
abi/include/_bits/stdint.h
r10d65d70 r99170e0c 180 180 #define WINT_MAX __WINT_MAX__ 181 181 182 #include <_bits/WCHAR_MIN.h> 183 #include <_bits/WCHAR_MAX.h> 182 #include <_bits/wchar_limits.h> 184 183 185 184 /* Use nonstandard 128-bit types if they are supported by the compiler. */ -
abi/include/_bits/wchar_limits.h
r10d65d70 r99170e0c 41 41 #define _BITS_WCHAR_MIN_H_ 42 42 43 #include <_bits/macros.h> 43 /* wchar_t should always be signed int in HelenOS. */ 44 44 45 #define WCHAR_MIN __WCHAR_MIN__ 45 #include <_bits/wchar_t.h> 46 47 #ifndef __cplusplus 48 _Static_assert(((wchar_t)-1) < 0, "wchar_t is not int"); 49 _Static_assert(sizeof(wchar_t) == 4, "wchar_t is not int"); 50 #endif 51 52 #ifndef WCHAR_MAX 53 #define WCHAR_MAX 0x7fffffff 54 #endif 55 #ifndef WCHAR_MIN 56 #define WCHAR_MIN (-WCHAR_MIN - 1) 57 #endif 46 58 47 59 #endif -
abi/include/_bits/wchar_t.h
r10d65d70 r99170e0c 41 41 #define _BITS_WCHAR_T_H_ 42 42 43 #include <_bits/macros.h> 44 45 #ifndef __cplusplus 46 typedef __WCHAR_TYPE__ wchar_t; 47 #endif 43 #define __need_wchar_t 44 #include <stddef.h> 48 45 49 46 #endif -
abi/include/_bits/wint_t.h
r10d65d70 r99170e0c 41 41 #define _BITS_WINT_T_H_ 42 42 43 #include <_bits/macros.h> 44 45 typedef __WINT_TYPE__ wint_t; 43 #define __need_wint_t 44 #include <stddef.h> 46 45 47 46 #endif -
uspace/lib/c/include/wchar.h
r10d65d70 r99170e0c 43 43 #include <_bits/size_t.h> 44 44 #include <_bits/wchar_t.h> 45 #include <_bits/wchar_limits.h> 45 46 #include <_bits/wint_t.h> 46 #include <_bits/WEOF.h>47 48 47 #include <_bits/NULL.h> 49 #include <_bits/WCHAR_MIN.h>50 #include <_bits/WCHAR_MAX.h>51 48 #include <_bits/WEOF.h> 52 49
Note:
See TracChangeset
for help on using the changeset viewer.