diff options
Diffstat (limited to 'libgloss/ms1/time.c')
-rw-r--r-- | libgloss/ms1/time.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libgloss/ms1/time.c b/libgloss/ms1/time.c new file mode 100644 index 000000000..2df8d48d2 --- /dev/null +++ b/libgloss/ms1/time.c @@ -0,0 +1,11 @@ +#include <_ansi.h> +#include <sys/types.h> +#include <sys/stat.h> +#include "trap.h" + + +time_t +time (time_t *tloc) +{ + return TRAP0 (SYS_time, tloc, 0, 0); +} |