diff options
Diffstat (limited to 'otherlibs/unix/pause.c')
-rw-r--r-- | otherlibs/unix/pause.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/otherlibs/unix/pause.c b/otherlibs/unix/pause.c new file mode 100644 index 000000000..126c310f9 --- /dev/null +++ b/otherlibs/unix/pause.c @@ -0,0 +1,8 @@ +#include <mlvalues.h> +#include "unix.h" + +value unix_pause() /* ML */ +{ + pause(); + return Val_unit; +} |