Changeset 810a36f in mainline for uspace/lib/c/include
- Timestamp:
- 2017-10-24T05:29:08Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b1eb7ef
- Parents:
- c8fbbe7 (diff), 673ea28 (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. - Location:
- uspace/lib/c/include
- Files:
-
- 1 added
- 6 edited
-
inttypes.h (modified) (1 diff)
-
io/charfield.h (modified) (1 diff)
-
limits.h (modified) (1 diff)
-
stddef.h (modified) (1 diff)
-
stdint.h (modified) (1 diff)
-
types/common.h (modified) (1 diff)
-
wchar.h (added)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/inttypes.h
rc8fbbe7 r810a36f 36 36 #define LIBC_INTTYPES_H_ 37 37 38 #include < libarch/inttypes.h>38 #include <_bits/inttypes.h> 39 39 40 40 #endif -
uspace/lib/c/include/io/charfield.h
rc8fbbe7 r810a36f 38 38 39 39 #include <stdbool.h> 40 #include <wchar.h> 40 41 #include <io/color.h> 41 42 #include <io/style.h> -
uspace/lib/c/include/limits.h
rc8fbbe7 r810a36f 36 36 #define LIBC_LIMITS_H_ 37 37 38 /* XXX Make this more accurate */ 39 #include <stdint.h> 40 #include <libarch/stdint.h> 38 #include <_bits/limits.h> 41 39 42 40 #endif -
uspace/lib/c/include/stddef.h
rc8fbbe7 r810a36f 36 36 #define LIBC_STDDEF_H_ 37 37 38 #include <libarch/stddef.h> 38 #include <_bits/size_t.h> 39 #include <_bits/ptrdiff_t.h> 40 #include <_bits/wchar_t.h> 39 41 40 #ifndef NULL 41 #define NULL ((void *) 0) 42 #endif 42 #include <_bits/NULL.h> 43 43 44 44 #define offsetof(type, member) \ -
uspace/lib/c/include/stdint.h
rc8fbbe7 r810a36f 36 36 #define LIBC_STDINT_H_ 37 37 38 #define INT8_MIN INT8_C(0x80) 39 #define INT8_MAX INT8_C(0x7F) 40 41 #define UINT8_MIN UINT8_C(0) 42 #define UINT8_MAX UINT8_C(0xFF) 43 44 #define INT16_MIN INT16_C(0x8000) 45 #define INT16_MAX INT16_C(0x7FFF) 46 47 #define UINT16_MIN UINT16_C(0) 48 #define UINT16_MAX UINT16_C(0xFFFF) 49 50 #define INT32_MIN INT32_C(0x80000000) 51 #define INT32_MAX INT32_C(0x7FFFFFFF) 52 53 #define UINT32_MIN UINT32_C(0) 54 #define UINT32_MAX UINT32_C(0xFFFFFFFF) 55 56 #define INT64_MIN INT64_C(0x8000000000000000) 57 #define INT64_MAX INT64_C(0x7FFFFFFFFFFFFFFF) 58 59 #define UINT64_MIN UINT64_C(0) 60 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF) 61 62 #include <libarch/stdint.h> 38 #include <_bits/stdint.h> 63 39 64 40 #endif -
uspace/lib/c/include/types/common.h
rc8fbbe7 r810a36f 36 36 #define LIBC_TYPES_COMMON_H_ 37 37 38 #include <libarch/types.h> 38 #if __SIZEOF_POINTER__ == 4 39 #define __32_BITS__ 40 #elif __SIZEOF_POINTER__ == 8 41 #define __64_BITS__ 42 #else 43 #error __SIZEOF_POINTER__ is not defined. 44 #endif 45 46 #include <_bits/all.h> 39 47 40 48 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
