ack/mach/minix/libsys/fork.c
1988-04-19 09:34:37 +00:00

7 lines
103 B
C

#include "lib.h"
PUBLIC int fork()
{
return callm1(MM, FORK, 0, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR);
}