Changeset 4c53333 in mainline for uspace/lib/posix/source/stdlib.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/stdlib.c
r80445cf r4c53333 35 35 36 36 #define LIBPOSIX_INTERNAL 37 #define __POSIX_DEF__(x) posix_##x 37 38 38 39 #include "internal/common.h" 39 #include " stdlib.h"40 41 #include " errno.h"42 #include " fcntl.h"43 #include " limits.h"44 #include " string.h"45 #include " sys/stat.h"46 #include " unistd.h"40 #include "posix/stdlib.h" 41 42 #include "posix/errno.h" 43 #include "posix/fcntl.h" 44 #include "posix/limits.h" 45 #include "posix/string.h" 46 #include "posix/sys/stat.h" 47 #include "posix/unistd.h" 47 48 48 49 #include "libc/sort.h" … … 62 63 // TODO: low priority, just a compile-time dependency of binutils 63 64 not_implemented(); 65 return 1; 64 66 } 65 67 … … 231 233 // TODO: low priority, just a compile-time dependency of binutils 232 234 not_implemented(); 235 return 0; 233 236 } 234 237 … … 243 246 int posix_system(const char *string) { 244 247 // TODO: does nothing at the moment 248 not_implemented(); 245 249 return 0; 246 250 }
Note:
See TracChangeset
for help on using the changeset viewer.