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
/
write.c
blob
0136d74ce65e844b1334f448800986ec49be86ef
1
/*
2
* Stub version of write.
3
*/
4
5
#include
"config.h"
6
#include <_ansi.h>
7
#include <_syslist.h>
8
#include <errno.h>
9
#undef errno
10
extern
int
errno
;
11
#include
"warning.h"
12
13
int
14
_DEFUN
(
_write
, (
file
,
ptr
,
len
),
15
int
file _AND
16
char
*
ptr _AND
17
int
len
)
18
{
19
errno
=
ENOSYS
;
20
return
-
1
;
21
}
22
23
stub_warning
(
_write
)
24