Changeset 16bfcd3 in mainline
- Timestamp:
- 2017-10-24T04:58:22Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 673ea28
- Parents:
- c9f3e7e9
- Files:
-
- 4 added
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
abi/include/_bits/stdint.h
rc9f3e7e9 r16bfcd3 172 172 #define SIZE_MAX __SIZE_MAX__ 173 173 174 #define WCHAR_MIN __WCHAR_MIN__175 #define WCHAR_MAX __WCHAR_MAX__176 177 174 #define WINT_MIN __WINT_MIN__ 178 175 #define WINT_MAX __WINT_MAX__ 176 177 #include <_bits/WCHAR_MIN.h> 178 #include <_bits/WCHAR_MAX.h> 179 179 180 180 /* Use nonstandard 128-bit types if they are supported by the compiler. */ -
uspace/app/edit/search.c
rc9f3e7e9 r16bfcd3 35 35 */ 36 36 37 #include <errno.h> 37 38 #include <stdlib.h> 38 39 #include <stddef.h> 39 #include < errno.h>40 #include <types/common.h> 40 41 41 42 #include "search.h" -
uspace/app/tester/float/softfloat1.c
rc9f3e7e9 r16bfcd3 31 31 #include <stdbool.h> 32 32 #include <stddef.h> 33 #include <inttypes.h> 33 34 #include <mathtypes.h> 34 35 #include <add.h> -
uspace/app/tester/print/print4.c
rc9f3e7e9 r16bfcd3 29 29 #include <stdio.h> 30 30 #include <stddef.h> 31 #include <wchar.h> 31 32 #include "../tester.h" 32 33 -
uspace/app/tester/util.h
rc9f3e7e9 r16bfcd3 37 37 38 38 #include <stdio.h> 39 #include <inttypes.h> 39 40 #include "tester.h" 40 41 -
uspace/lib/bithenge/src/print.c
rc9f3e7e9 r16bfcd3 40 40 #include <stdarg.h> 41 41 #include <stdio.h> 42 #include <wchar.h> 42 43 #include <bithenge/blob.h> 43 44 #include <bithenge/print.h> -
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 -
uspace/lib/draw/gfx/font-8x16.h
rc9f3e7e9 r16bfcd3 38 38 #include <stdint.h> 39 39 #include <stdbool.h> 40 #include <stddef.h> 40 41 41 42 #define FONT_GLYPHS 2899 -
uspace/lib/http/include/http/receive-buffer.h
rc9f3e7e9 r16bfcd3 39 39 #include <adt/list.h> 40 40 #include <stddef.h> 41 #include <types/common.h> 41 42 42 43 /** Receive data. -
uspace/lib/nic/include/nic_addr_db.h
rc9f3e7e9 r16bfcd3 44 44 45 45 #include <adt/hash_table.h> 46 #include <types/common.h> 46 47 47 48 /** -
uspace/lib/trackmod/xm.c
rc9f3e7e9 r16bfcd3 38 38 #include <stdlib.h> 39 39 #include <mem.h> 40 #include <types/common.h> 40 41 41 42 #include "byteorder.h"
Note:
See TracChangeset
for help on using the changeset viewer.