Changeset ed18e14 in mainline
- Timestamp:
- 2018-06-12T13:56:59Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 01cc7b4
- Parents:
- ec39720
- git-author:
- Jiri Svoboda <jiri@…> (2018-06-11 17:40:57)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-06-12 13:56:59)
- Location:
- uspace/lib/c
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/Makefile
rec39720 red18e14 131 131 generic/double_to_str.c \ 132 132 generic/malloc.c \ 133 generic/stdio/scanf.c \ 133 134 generic/sysinfo.c \ 134 135 generic/ipc.c \ … … 185 186 test/main.c \ 186 187 test/io/table.c \ 188 test/stdio/scanf.c \ 187 189 test/odict.c \ 188 190 test/qsort.c \ -
uspace/lib/c/include/stdio.h
rec39720 red18e14 101 101 extern int vsnprintf(char *, size_t, const char *, va_list); 102 102 103 extern int xxfscanf(FILE *, const char *, ...); 104 extern int xxsscanf(const char *, const char *, ...); 105 103 106 /* File stream functions */ 104 107 extern FILE *fopen(const char *, const char *); -
uspace/lib/c/test/main.c
rec39720 red18e14 36 36 PCUT_IMPORT(odict); 37 37 PCUT_IMPORT(qsort); 38 PCUT_IMPORT(scanf); 38 39 PCUT_IMPORT(sprintf); 39 40 PCUT_IMPORT(str);
Note:
See TracChangeset
for help on using the changeset viewer.