ocaml/otherlibs/unix/pause.c

9 lines
117 B
C

#include <mlvalues.h>
#include "unix.h"
value unix_pause() /* ML */
{
pause();
return Val_unit;
}