ocaml/otherlibs/unix/alarm.c

9 lines
154 B
C

#include <mlvalues.h>
#include "unix.h"
value unix_alarm(t) /* ML */
value t;
{
return Val_int(alarm((unsigned int) Long_val(t)));
}