Files
musl/src/time/gettimeofday.c

9 lines
143 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <sys/time.h>
#include "syscall.h"
int gettimeofday(struct timeval *tv, void *tz)
{
__syscall(SYS_gettimeofday, tv, 0);
2011-02-12 00:22:29 -05:00
return 0;
}