mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
15 lines
139 B
C
15 lines
139 B
C
|
#include <u.h>
|
||
|
#include <libc.h>
|
||
|
#include "9proc.h"
|
||
|
#undef fork
|
||
|
|
||
|
int
|
||
|
p9fork(void)
|
||
|
{
|
||
|
int pid;
|
||
|
|
||
|
pid = fork();
|
||
|
_p9uproc(0);
|
||
|
return pid;
|
||
|
}
|