Changeset a6d908c1 in mainline
- Timestamp:
- 2011-07-02T23:33:27Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a35fc17
- Parents:
- 557a747
- Location:
- uspace/lib/posix
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.c
r557a747 ra6d908c1 36 36 #define LIBPOSIX_INTERNAL 37 37 38 #include <assert.h> 39 #include <errno.h> 40 #include <bool.h> 38 /* Has to be first. */ 39 #include "stdbool.h" 41 40 42 41 #include "internal/common.h" 43 42 #include "stdio.h" 43 44 #include "assert.h" 45 #include "errno.h" 46 #include "string.h" 47 #include "sys/types.h" 48 44 49 #include "libc/io/printf_core.h" 45 #include "string.h"46 50 #include "libc/str.h" 47 #include "sys/types.h" 51 48 52 49 53 /* not the best of solutions, but freopen and ungetc will eventually -
uspace/lib/posix/stdlib.c
r557a747 ra6d908c1 36 36 #define LIBPOSIX_INTERNAL 37 37 38 #include "internal/common.h" 38 39 #include "stdlib.h" 40 39 41 #include "libc/sort.h" 40 42 #include "libc/str.h" 41 43 #include "libc/vfs/vfs.h" 42 #include "internal/common.h"43 44 #include <errno.h> // FIXME: use POSIX errno 44 45 -
uspace/lib/posix/stdlib/strtol.c
r557a747 ra6d908c1 37 37 #include "../internal/common.h" 38 38 #include "../stdlib.h" 39 #include <errno.h> // FIXME: use POSIX errno 39 40 40 #include "../limits.h" 41 41 #include "../ctype.h" 42 #include <errno.h> // FIXME: use POSIX errno 42 43 43 44 // TODO: documentation -
uspace/lib/posix/stdlib/strtold.c
r557a747 ra6d908c1 35 35 #define LIBPOSIX_INTERNAL 36 36 37 /* Has to be first. */ 38 #include "../stdbool.h" 39 37 40 #include "../internal/common.h" 38 39 #include "../libc/assert.h" 41 #include "../stdlib.h" 42 43 #include "../assert.h" 40 44 #include "../ctype.h" 41 #include <errno.h> // TODO: use POSIX errno42 #include "../libc/bool.h"43 45 #include "../stdint.h" 44 #include "../stdlib.h"45 46 #include "../strings.h" 47 #include <errno.h> // FIXME: use POSIX errno 46 48 47 49 #ifndef HUGE_VALL -
uspace/lib/posix/string.c
r557a747 ra6d908c1 36 36 #define LIBPOSIX_INTERNAL 37 37 38 #include "internal/common.h" 38 39 #include "string.h" 39 40 40 #include "libc/assert.h" 41 #include "libc/str_error.h" 41 #include "assert.h" 42 42 #include "errno.h" 43 43 #include "limits.h" 44 44 #include "stdlib.h" 45 46 #include "libc/str_error.h" 45 47 46 48 /** -
uspace/lib/posix/strings.c
r557a747 ra6d908c1 38 38 #include "internal/common.h" 39 39 #include "strings.h" 40 40 41 #include "string.h" 41 42 #include "ctype.h" -
uspace/lib/posix/sys/stat.c
r557a747 ra6d908c1 36 36 #define LIBPOSIX_INTERNAL 37 37 38 #include "../internal/common.h" 38 39 #include "stat.h" 39 #include "../internal/common.h" 40 #include <mem.h>40 41 #include "../libc/mem.h" 41 42 42 43 /** -
uspace/lib/posix/time.c
r557a747 ra6d908c1 38 38 #include "internal/common.h" 39 39 #include "time.h" 40 40 41 #include "libc/malloc.h" 41 #include <task.h>42 #include <stats.h>42 #include "libc/task.h" 43 #include "libc/stats.h" 43 44 44 45 /**
Note:
See TracChangeset
for help on using the changeset viewer.