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