Welcome to mirror list, hosted at ThFree Co, Russian Federation.

syswrite.c « syscalls « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00fc8a381e76d3c95ff380d9c87b5f1cc12b70b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* connector for write */

#include <reent.h>
#include <unistd.h>

_READ_WRITE_RETURN_TYPE
write (fd, buf, cnt)
     int fd;
     const void *buf;
     size_t cnt;
{
#ifdef REENTRANT_SYSCALLS_PROVIDED
  return _write_r (_REENT, fd, buf, cnt);
#else
  return _write (fd, buf, cnt);
#endif
}