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: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git]
/
newlib
/
libc
/
sys
/
rdos
/
times.c
blob
b0ba90030566ea80a2e194ee3419845ace181688
1
#include
"config.h"
2
#include <_ansi.h>
3
#include <_syslist.h>
4
#include <sys/times.h>
5
#include <errno.h>
6
7
clock_t
times
(
struct
tms
*
buf
)
8
{
9
errno
=
ENOSYS
;
10
return
-
1
;
11
}