diff options
Diffstat (limited to 'otherlibs/unix/getpid.c')
-rw-r--r-- | otherlibs/unix/getpid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/getpid.c b/otherlibs/unix/getpid.c index df3946038..37a4fadac 100644 --- a/otherlibs/unix/getpid.c +++ b/otherlibs/unix/getpid.c @@ -15,7 +15,7 @@ #include <mlvalues.h> #include "unixsupport.h" -value unix_getpid(void) /* ML */ +CAMLprim value unix_getpid(void) { return Val_int(getpid()); } |