repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
syscalls
/
sysgettod.c
blob
e050d35e2475f342bd67c6eccc8d8cd845638676
1
/* connector for gettimeofday */
2
3
#include <reent.h>
4
#include <sys/types.h>
5
#include <sys/time.h>
6
7
int
8
gettimeofday
(
struct
timeval
*
ptimeval
,
9
void
*
ptimezone
)
10
{
11
return
_gettimeofday_r
(
_REENT
,
ptimeval
,
ptimezone
);
12
}