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