summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/getpid.c
blob: b8082b95f0d9202f5e52bd6cda8b89a46e9eebb2 (plain)
1
2
3
4
5
6
7
#include <mlvalues.h>
#include "unix.h"

value unix_getpid()              /* ML */
{
  return Val_int(getpid());
}