repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git]
/
toolchain
/
gcc
/
libgloss
/
libnosys
/
times.c
blob
f205e50f524ee96b789a0035e861b754a6f6e513
1
/*
2
* Stub version of times.
3
*/
4
5
#include
"config.h"
6
#include <_ansi.h>
7
#include <_syslist.h>
8
#include <sys/times.h>
9
#include <errno.h>
10
#undef errno
11
extern
int
errno
;
12
#include
"warning.h"
13
14
clock_t
15
_DEFUN
(
_times
, (
buf
),
16
struct
tms
*
buf
)
17
{
18
errno
=
ENOSYS
;
19
return
-
1
;
20
}
21
22
stub_warning
(
_times
)