Changeset 4c53333 in mainline for uspace/lib/posix/source/stdio/scanf.c
- Timestamp:
- 2013-07-11T08:21:10Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 64e63ce1
- Parents:
- 80445cf (diff), c8bb1633 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/stdio/scanf.c
r80445cf r4c53333 34 34 35 35 #define LIBPOSIX_INTERNAL 36 37 /* Must be first. */ 38 #include "../stdbool.h" 39 40 #include "../assert.h" 41 #include "../errno.h" 42 43 #include "../stdio.h" 44 #include "../stdlib.h" 45 #include "../stddef.h" 46 #include "../string.h" 47 #include "../ctype.h" 48 #include "../sys/types.h" 36 #define __POSIX_DEF__(x) posix_##x 37 38 #include "posix/assert.h" 39 #include "posix/errno.h" 40 41 #include "posix/stdio.h" 42 #include "posix/stdlib.h" 43 #include "posix/stddef.h" 44 #include "posix/string.h" 45 #include "posix/ctype.h" 46 #include "posix/sys/types.h" 49 47 50 48 #include "../internal/common.h" 51 #include "../libc/malloc.h" 49 #include "libc/malloc.h" 50 #include "libc/stdbool.h" 52 51 53 52 /** Unified data type for possible data sources for scanf. */
Note:
See TracChangeset
for help on using the changeset viewer.