diff options
Diffstat (limited to 'newlib/libc/syscalls/sysread.c')
-rw-r--r-- | newlib/libc/syscalls/sysread.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/newlib/libc/syscalls/sysread.c b/newlib/libc/syscalls/sysread.c deleted file mode 100644 index 821a91a..0000000 --- a/newlib/libc/syscalls/sysread.c +++ /dev/null @@ -1,17 +0,0 @@ -/* connector for read */ - -#include <reent.h> -#include <unistd.h> - -int -read (fd, buf, cnt) - int fd; - void *buf; - size_t cnt; -{ -#ifdef REENTRANT_SYSCALLS_PROVIDED - return _read_r (_REENT, fd, buf, cnt); -#else - return _read (fd, buf, cnt); -#endif -} |