diff options
Diffstat (limited to 'otherlibs/unix/exit.c')
-rw-r--r-- | otherlibs/unix/exit.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/otherlibs/unix/exit.c b/otherlibs/unix/exit.c deleted file mode 100644 index c3cf6572c9..0000000000 --- a/otherlibs/unix/exit.c +++ /dev/null @@ -1,12 +0,0 @@ -#include <mlvalues.h> -#include "unix.h" - -value unix_exit(n) /* ML */ - value n; -{ - _exit(Int_val(n)); - return Val_unit; /* never reached, but suppress warnings */ - /* from smart compilers */ -} - - |