Changeset 1d6dd2a in mainline for uspace/lib/c
- 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/c
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.