mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
14 lines
228 B
C
14 lines
228 B
C
|
/* connector for write */
|
||
|
|
||
|
#include <reent.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
_READ_WRITE_RETURN_TYPE
|
||
|
_DEFUN (write, (fd, buf, cnt),
|
||
|
int fd _AND
|
||
|
const void *buf _AND
|
||
|
size_t cnt)
|
||
|
{
|
||
|
return _write_r (_REENT, fd, buf, cnt);
|
||
|
}
|