libc/libgloss/i960/mon-write.c

15 lines
210 B
C
Raw Permalink Normal View History

2000-03-17 23:48:54 +01:00
#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;
}