Changeset 16bfcd3 in mainline for uspace/lib/c
- Timestamp:
- 2017-10-24T04:58:22Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 673ea28
- Parents:
- c9f3e7e9
- Location:
- uspace/lib/c
- Files:
-
- 1 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/double_to_str.c
rc9f3e7e9 r16bfcd3 32 32 #include <ieee_double.h> 33 33 34 #include <limits.h> 34 35 #include <stdint.h> 35 36 #include <stdbool.h> -
uspace/lib/c/generic/gsort.c
rc9f3e7e9 r16bfcd3 41 41 42 42 #include <gsort.h> 43 #include <inttypes.h> 43 44 #include <mem.h> 44 45 #include <malloc.h> -
uspace/lib/c/generic/inet/addr.c
rc9f3e7e9 r16bfcd3 41 41 #include <malloc.h> 42 42 #include <bitops.h> 43 #include <inttypes.h> 43 44 44 45 #define INET_PREFIXSTRSIZE 5 -
uspace/lib/c/generic/io/printf_core.c
rc9f3e7e9 r16bfcd3 46 46 #include <assert.h> 47 47 #include <macros.h> 48 #include <wchar.h> 48 49 49 50 -
uspace/lib/c/generic/str.c
rc9f3e7e9 r16bfcd3 46 46 #include <align.h> 47 47 #include <mem.h> 48 #include <limits.h> 48 49 49 50 /** Check the condition if wchar_t is signed */ -
uspace/lib/c/include/inttypes.h
rc9f3e7e9 r16bfcd3 36 36 #define LIBC_INTTYPES_H_ 37 37 38 // TODO: Remove39 #include <_bits/all.h>40 41 38 #include <_bits/inttypes.h> 42 39 -
uspace/lib/c/include/io/charfield.h
rc9f3e7e9 r16bfcd3 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/stddef.h
rc9f3e7e9 r16bfcd3 36 36 #define LIBC_STDDEF_H_ 37 37 38 // TODO: Remove39 #include <_bits/all.h>40 41 38 #include <_bits/size_t.h> 42 39 #include <_bits/ptrdiff_t.h> -
uspace/lib/c/include/stdint.h
rc9f3e7e9 r16bfcd3 36 36 #define LIBC_STDINT_H_ 37 37 38 // TODO: Remove39 #include <_bits/all.h>40 41 38 #include <_bits/stdint.h> 42 39
Note:
See TracChangeset
for help on using the changeset viewer.