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: 3b9b878f58ccdb7cd33e940e3200bfa4041e03de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* connector for write */

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

_READ_WRITE_RETURN_TYPE
write (int fd,
     const void *buf,
     size_t cnt)
{
  return _write_r (_REENT, fd, buf, cnt);
}