diff options
Diffstat (limited to 'newlib/libc/sys')
-rw-r--r-- | newlib/libc/sys/sh/syscalls.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/newlib/libc/sys/sh/syscalls.c b/newlib/libc/sys/sh/syscalls.c index 3626c0a44..f9761145f 100644 --- a/newlib/libc/sys/sh/syscalls.c +++ b/newlib/libc/sys/sh/syscalls.c @@ -1,6 +1,7 @@ #include <_ansi.h> #include <sys/types.h> #include <sys/stat.h> +#include <sys/time.h> #include "sys/syscall.h" int errno; @@ -174,3 +175,11 @@ _pipe (int *fd) { return __trap34 (SYS_pipe, fd); } + +int +_gettimeofday (struct timeval *tv, struct timezone *tz) +{ + tv->tv_usec = 0; + tv->tv_sec = __trap34 (SYS_time); + return 0; +} |