Changeset 16bfcd3 in mainline for uspace/lib
- 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
- Files:
-
- 1 added
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
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.