Changeset 9b8be79 in mainline for uspace/lib/posix/src/stdio.c
- Timestamp:
- 2018-09-18T14:50:22Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 460ea7e
- Parents:
- 7570a95f
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-14 17:49:49)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-18 14:50:22)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/src/stdio.c
r7570a95f r9b8be79 36 36 37 37 #include "internal/common.h" 38 #include "posix/stdio.h"38 #include <stdio.h> 39 39 40 40 #include <assert.h> … … 43 43 #include <tmpfile.h> 44 44 45 #include "posix/fcntl.h" 46 #include "posix/stdlib.h" 47 #include "posix/string.h" 48 #include "posix/sys/stat.h" 49 #include "posix/sys/types.h" 50 #include "posix/unistd.h" 51 52 #include "libc/stdio.h" 53 #include "libc/io/printf_core.h" 54 #include "libc/str.h" 55 #include "libc/malloc.h" 56 #include "libc/adt/list.h" 45 #include <fcntl.h> 46 #include <stdlib.h> 47 #include <string.h> 48 #include <sys/stat.h> 49 #include <sys/types.h> 50 #include <unistd.h> 51 52 #include <io/printf_core.h> 53 #include <str.h> 54 #include <malloc.h> 55 #include <adt/list.h> 57 56 58 57 /**
Note:
See TracChangeset
for help on using the changeset viewer.