Changeset a3da2b2 in mainline for uspace/lib/posix/source/stdio/scanf.c
- Timestamp:
- 2012-08-31T09:55:22Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ca4c6ec1
- Parents:
- 33fee91
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/stdio/scanf.c
r33fee91 ra3da2b2 36 36 37 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"38 #include "posix/stdbool.h" 39 40 #include "posix/assert.h" 41 #include "posix/errno.h" 42 43 #include "posix/stdio.h" 44 #include "posix/stdlib.h" 45 #include "posix/stddef.h" 46 #include "posix/string.h" 47 #include "posix/ctype.h" 48 #include "posix/sys/types.h" 49 49 50 50 #include "../internal/common.h" 51 #include " ../libc/malloc.h"51 #include "libc/malloc.h" 52 52 53 53 /** Unified data type for possible data sources for scanf. */
Note:
See TracChangeset
for help on using the changeset viewer.