URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [libgloss/] [i960/] [mon-read.c] - Rev 847
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