URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [newlib/] [newlib/] [libgloss/] [i960/] [mon-read.c] - Rev 1777
Go to most recent revision | Compare with Previous | Blame | View Log
#include <errno.h> read (fd, buf, sz) int fd; char *buf; int sz; { int nread; int r; r = _sys_read (fd, buf, sz, &nread); if (r != 0) { errno = r; return -1; } return nread; }
Go to most recent revision | Compare with Previous | Blame | View Log