Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / syscalls / sysread.c
blob25d4e3bcf9c09adf70dfb2f1b12fe7f414e2d8b6
1 /* connector for read */
3 #include <reent.h>
4 #include <unistd.h>
6 _READ_WRITE_RETURN_TYPE
7 read (int fd,
8 void *buf,
9 size_t cnt)
11 return _read_r (_REENT, fd, buf, cnt);