mirror of
https://github.com/fluencelabs/musl
synced 2025-06-07 20:11:49 +00:00
10 lines
139 B
C
10 lines
139 B
C
|
#include <unistd.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
/* FIXME: add support for atfork stupidity */
|
||
|
|
||
|
pid_t fork(void)
|
||
|
{
|
||
|
return syscall0(__NR_fork);
|
||
|
}
|