summaryrefslogtreecommitdiff
path: root/otherlibs/unix/time.c
blob: 5cf811b47206f47f7e3974c48a8ad3db55134adb (plain)
1
2
3
4
5
6
7
8
9
#include <mlvalues.h>
#include "unix.h"

extern long time();

value unix_time()                /* ML */
{
  return Val_long(time((long *) NULL));
}