You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
210 B
C

#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;
}