Changeset 1d6dd2a in mainline for uspace/lib
- Timestamp:
- 2018-01-13T15:53:02Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b5746a2
- Parents:
- bd76871
- Location:
- uspace/lib
- Files:
-
- 24 edited
-
bithenge/include/bithenge/tree.h (modified) (1 diff)
-
c/arch/ia32/src/rtld/reloc.c (modified) (1 diff)
-
c/generic/inet/addr.c (modified) (1 diff)
-
c/generic/io/log.c (modified) (1 diff)
-
c/generic/io/table.c (modified) (1 diff)
-
c/generic/rtld/dynamic.c (modified) (1 diff)
-
c/generic/rtld/module.c (modified) (1 diff)
-
c/generic/rtld/rtld.c (modified) (1 diff)
-
c/generic/rtld/symbol.c (modified) (1 diff)
-
c/generic/vfs/mtab.c (modified) (1 diff)
-
c/include/io/kio.h (modified) (1 diff)
-
c/include/stdio.h (modified) (1 diff)
-
c/test/sprintf.c (modified) (1 diff)
-
draw/font/pcf.c (modified) (1 diff)
-
drv/generic/logbuf.c (modified) (1 diff)
-
drv/generic/remote_ahci.c (modified) (1 diff)
-
fmtutil/fmtutil.c (modified) (1 diff)
-
gui/terminal.c (modified) (1 diff)
-
gui/terminal.h (modified) (1 diff)
-
pcut/src/report/report.c (modified) (1 diff)
-
posix/source/stdlib/strtold.c (modified) (1 diff)
-
posix/source/string.c (modified) (1 diff)
-
posix/source/strings.c (modified) (1 diff)
-
usb/src/debug.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/bithenge/include/bithenge/tree.h
rbd76871 r1d6dd2a 39 39 40 40 #include <assert.h> 41 #include <stdbool.h> 41 42 #include "os.h" 42 43 -
uspace/lib/c/arch/ia32/src/rtld/reloc.c
rbd76871 r1d6dd2a 38 38 #include <stdlib.h> 39 39 #include <inttypes.h> 40 #include <str.h> 40 41 41 42 #include <libarch/rtld/elf_dyn.h> -
uspace/lib/c/generic/inet/addr.c
rbd76871 r1d6dd2a 42 42 #include <bitops.h> 43 43 #include <inttypes.h> 44 #include <str.h> 44 45 45 46 #define INET_PREFIXSTRSIZE 5 -
uspace/lib/c/generic/io/log.c
rbd76871 r1d6dd2a 41 41 #include <io/log.h> 42 42 #include <ipc/logger.h> 43 #include <str.h> 43 44 #include <ns.h> 44 45 -
uspace/lib/c/generic/io/table.c
rbd76871 r1d6dd2a 40 40 #include <stdio.h> 41 41 #include <stdlib.h> 42 #include <str.h> 42 43 43 44 static table_column_t *table_column_first(table_t *); -
uspace/lib/c/generic/rtld/dynamic.c
rbd76871 r1d6dd2a 37 37 #include <stdio.h> 38 38 #include <inttypes.h> 39 #include <str.h> 39 40 40 41 #include <rtld/elf_dyn.h> -
uspace/lib/c/generic/rtld/module.c
rbd76871 r1d6dd2a 41 41 #include <stdio.h> 42 42 #include <stdlib.h> 43 #include <str.h> 43 44 44 45 #include <rtld/rtld.h> -
uspace/lib/c/generic/rtld/rtld.c
rbd76871 r1d6dd2a 40 40 #include <rtld/rtld_debug.h> 41 41 #include <stdlib.h> 42 #include <str.h> 42 43 43 44 rtld_t *runtime_env; -
uspace/lib/c/generic/rtld/symbol.c
rbd76871 r1d6dd2a 37 37 #include <stdio.h> 38 38 #include <stdlib.h> 39 #include <str.h> 39 40 40 41 #include <elf/elf.h> -
uspace/lib/c/generic/vfs/mtab.c
rbd76871 r1d6dd2a 40 40 #include <errno.h> 41 41 #include <assert.h> 42 #include <str.h> 42 43 43 44 static void process_mp(const char *path, struct stat *stat, list_t *mtab_list) -
uspace/lib/c/include/io/kio.h
rbd76871 r1d6dd2a 39 39 #include <stdarg.h> 40 40 #include <io/verify.h> 41 #include <_bits/errno.h> 42 #include <_bits/size_t.h> 41 43 42 44 extern errno_t kio_write(const void *, size_t, size_t *); -
uspace/lib/c/include/stdio.h
rbd76871 r1d6dd2a 37 37 38 38 #include <stdarg.h> 39 #include <str.h>40 39 #include <io/verify.h> 41 #include <abi/kio.h> 40 #include <_bits/size_t.h> 41 #include <_bits/wchar_t.h> 42 42 43 43 #define EOF (-1) -
uspace/lib/c/test/sprintf.c
rbd76871 r1d6dd2a 28 28 29 29 #include <stdio.h> 30 #include <str.h> 30 31 #include <pcut/pcut.h> 31 32 -
uspace/lib/draw/font/pcf.c
rbd76871 r1d6dd2a 42 42 #include <offset.h> 43 43 #include <stdlib.h> 44 #include <str.h> 44 45 45 46 #include "pcf.h" -
uspace/lib/drv/generic/logbuf.c
rbd76871 r1d6dd2a 35 35 #include <ddf/log.h> 36 36 #include <assert.h> 37 #include <str.h> 37 38 38 39 /** Formatting string for printing number of not-printed items. */ -
uspace/lib/drv/generic/remote_ahci.c
rbd76871 r1d6dd2a 39 39 #include <stdio.h> 40 40 #include <macros.h> 41 #include <str.h> 41 42 #include "ahci_iface.h" 42 43 #include "ddf/driver.h" -
uspace/lib/fmtutil/fmtutil.c
rbd76871 r1d6dd2a 31 31 #include <fmtutil.h> 32 32 #include <stdlib.h> 33 #include <str.h> 33 34 34 35 typedef struct { -
uspace/lib/gui/terminal.c
rbd76871 r1d6dd2a 47 47 #include <atomic.h> 48 48 #include <stdarg.h> 49 #include <str.h> 49 50 #include "window.h" 50 51 #include "terminal.h" -
uspace/lib/gui/terminal.h
rbd76871 r1d6dd2a 45 45 #include <adt/prodcons.h> 46 46 #include <atomic.h> 47 #include <str.h> 47 48 #include "widget.h" 48 49 -
uspace/lib/pcut/src/report/report.c
rbd76871 r1d6dd2a 33 33 34 34 #include "../internal.h" 35 #ifndef __helenos__ 35 #ifdef __helenos__ 36 #include <str.h> 37 #else 36 38 #include <string.h> 37 39 #endif -
uspace/lib/posix/source/stdlib/strtold.c
rbd76871 r1d6dd2a 50 50 51 51 #include "posix/float.h" 52 53 #include "libc/str.h" 52 54 53 55 #ifndef HUGE_VALL -
uspace/lib/posix/source/string.c
rbd76871 r1d6dd2a 48 48 #include "posix/signal.h" 49 49 50 #include "libc/str.h" 50 51 #include "libc/str_error.h" 51 52 -
uspace/lib/posix/source/strings.c
rbd76871 r1d6dd2a 44 44 45 45 #include "libc/mem.h" 46 #include "libc/str.h" 46 47 47 48 /** -
uspace/lib/usb/src/debug.c
rbd76871 r1d6dd2a 36 36 #include <ddf/log.h> 37 37 #include <usb/debug.h> 38 #include <str.h> 38 39 39 40 #define REMAINDER_STR_FMT " (%zu)..."
Note:
See TracChangeset
for help on using the changeset viewer.
