mirror of
https://github.com/fluencelabs/musl
synced 2025-06-20 10:16:47 +00:00
10 lines
178 B
C
10 lines
178 B
C
![]() |
#define SYSCALL_RETURN_ERRNO
|
||
|
#include <sys/time.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int gettimeofday(struct timeval *tv, void *tz)
|
||
|
{
|
||
|
syscall2(__NR_gettimeofday, (long)tv, 0);
|
||
|
return 0;
|
||
|
}
|