diff options
Diffstat (limited to 'otherlibs/unix/fork.c')
-rw-r--r-- | otherlibs/unix/fork.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/otherlibs/unix/fork.c b/otherlibs/unix/fork.c deleted file mode 100644 index 046dd894ce..0000000000 --- a/otherlibs/unix/fork.c +++ /dev/null @@ -1,12 +0,0 @@ -#include <mlvalues.h> -#include "unix.h" - -value unix_fork(unit) /* ML */ - value unit; -{ - int ret; - ret = fork(); - if (ret == -1) uerror("fork", Nothing); - return Val_int(ret); -} - |