ocaml/otherlibs/unix/time.c

10 lines
148 B
C
Raw Normal View History

#include <mlvalues.h>
#include "unix.h"
extern long time();
value unix_time() /* ML */
{
return Val_long(time((long *) NULL));
}