mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00:00
13 lines
182 B
C
13 lines
182 B
C
/* connector for read */
|
|
|
|
#include <reent.h>
|
|
#include <unistd.h>
|
|
|
|
_READ_WRITE_RETURN_TYPE
|
|
read (int fd,
|
|
void *buf,
|
|
size_t cnt)
|
|
{
|
|
return _read_r (_REENT, fd, buf, cnt);
|
|
}
|