mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-02 17:31:35 +00:00
13 lines
191 B
C
13 lines
191 B
C
/* connector for write */
|
|
|
|
#include <reent.h>
|
|
#include <unistd.h>
|
|
|
|
_READ_WRITE_RETURN_TYPE
|
|
write (int fd,
|
|
const void *buf,
|
|
size_t cnt)
|
|
{
|
|
return _write_r (_REENT, fd, buf, cnt);
|
|
}
|