ocaml/otherlibs/unix/getppid.c

8 lines
117 B
C

#include <mlvalues.h>
#include "unix.h"
value unix_getppid() /* ML */
{
return Val_int(getppid());
}