Changeset 4c53333 in mainline for uspace/lib/posix/source/unistd.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/unistd.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 " unistd.h"40 41 #include " errno.h"42 #include " string.h"43 #include " fcntl.h"40 #include "posix/unistd.h" 41 42 #include "posix/errno.h" 43 #include "posix/string.h" 44 #include "posix/fcntl.h" 44 45 45 46 #include "libc/task.h" … … 49 50 /* Array of environment variable strings (NAME=VALUE). */ 50 51 char **posix_environ = NULL; 52 char *posix_optarg; 51 53 52 54 /** … … 420 422 } 421 423 424 unsigned int posix_alarm(unsigned int seconds) 425 { 426 not_implemented(); 427 return 0; 428 } 429 422 430 /** @} 423 431 */
Note:
See TracChangeset
for help on using the changeset viewer.