mirror of
https://github.com/encounter/newlib.git
synced 2026-03-30 11:31:09 -07:00
15 lines
210 B
C
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;
|
|
}
|