4f294c247f
This patch mainly copies and modifies files existing in the current libc implementing minix specific functions. To keep consisten with the NetBSD libc, we remove namespace stubs and we use "namespace.h" and weak links.
16 lines
219 B
C
16 lines
219 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(fork, _fork)
|
|
#endif
|
|
|
|
PUBLIC pid_t fork()
|
|
{
|
|
message m;
|
|
|
|
return(_syscall(PM_PROC_NR, FORK, &m));
|
|
}
|