2017-12-27 04:27:52 +08:00
|
|
|
#include <machine/syscall.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include "internal_syscall.h"
|
|
|
|
|
|
|
|
/* Get the current time. Only relatively correct. */
|
|
|
|
int
|
|
|
|
_gettimeofday(struct timeval *tp, void *tzp)
|
|
|
|
{
|
2020-02-11 04:19:58 +08:00
|
|
|
return syscall_errno (SYS_gettimeofday, 1, tp, 0, 0, 0, 0, 0);
|
2017-12-27 04:27:52 +08:00
|
|
|
}
|