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
/
systimes.c
blob
ecd958348011dde8fe143ee7849d448ac7753904
1
/* connector for times */
2
3
#include <reent.h>
4
#include <sys/times.h>
5
6
clock_t
7
times
(
struct
tms
*
buf
)
8
{
9
return
_times_r
(
_REENT
,
buf
);
10
}