mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
9087163804
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
13 lines
225 B
C
13 lines
225 B
C
/* connector for gettimeofday */
|
|
|
|
#include <reent.h>
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
|
|
int
|
|
gettimeofday (struct timeval *ptimeval,
|
|
void *ptimezone)
|
|
{
|
|
return _gettimeofday_r (_REENT, ptimeval, ptimezone);
|
|
}
|