mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00: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;
|
|
}
|