blob: d904dfa71bc79a618310343e34a47f6b29104c9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* vi: set sw=4 ts=4: */
/*
* gettimeofday() for uClibc
*
* Copyright (C) 2000-2004 by Erik Andersen <andersen@codpoet.org>
*
* GNU Library General Public License (LGPL) version 2 or later.
*/
#include "syscalls.h"
#include <sys/time.h>
#ifdef __NR_gettimeofday
#define __NR___libc_gettimeofday __NR_gettimeofday
#endif
_syscall2(int, __libc_gettimeofday, struct timeval *, tv, struct timezone *, tz);
weak_alias(__libc_gettimeofday, gettimeofday);
|