source:
trunk/minix/lib/posix/_fork.c@
9
Last change on this file since 9 was 9, checked in by , 13 years ago | |
---|---|
File size: 129 bytes |
Line | |
---|---|
1 | #include <lib.h> |
2 | #define fork _fork |
3 | #include <unistd.h> |
4 | |
5 | PUBLIC pid_t fork() |
6 | { |
7 | message m; |
8 | |
9 | return(_syscall(MM, FORK, &m)); |
10 | } |
Note:
See TracBrowser
for help on using the repository browser.