12 lines
154 B
C
Raw Normal View History

2017-04-11 23:13:36 +02:00
#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
2018-12-28 16:30:48 +01:00
#include "trap.h"
2017-04-11 23:13:36 +02:00
time_t
time (time_t *tloc)
{
return TRAP0 (SYS_time, tloc, 0, 0);
}