source: trunk/libs/newlib/src/newlib/libc/syscalls/sysread.c @ 620

Last change on this file since 620 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 182 bytes
Line 
1/* connector for read */
2
3#include <reent.h>
4#include <unistd.h>
5
6_READ_WRITE_RETURN_TYPE
7read (int fd,
8     void *buf,
9     size_t cnt)
10{
11  return _read_r (_REENT, fd, buf, cnt);
12}
Note: See TracBrowser for help on using the repository browser.