521b4d576811fef4376b10f9de6d0e47fcd7d108
[musl] / src / time / gettimeofday.c
1 #include <sys/time.h>
2 #include "syscall.h"
3
4 int gettimeofday(struct timeval *tv, void *tz)
5 {
6         __syscall(__NR_gettimeofday, tv, 0);
7         return 0;
8 }