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
/
syswrite.c
blob
3b9b878f58ccdb7cd33e940e3200bfa4041e03de
1
/* connector for write */
2
3
#include <reent.h>
4
#include <unistd.h>
5
6
_READ_WRITE_RETURN_TYPE
7
write
(
int
fd
,
8
const void
*
buf
,
9
size_t
cnt
)
10
{
11
return
_write_r
(
_REENT
,
fd
,
buf
,
cnt
);
12
}