mirror of
https://github.com/fluencelabs/musl
synced 2025-05-05 12:02:13 +00:00
7 lines
131 B
C
7 lines
131 B
C
|
#include "stdio_impl.h"
|
||
|
|
||
|
size_t __stdio_read(FILE *f, unsigned char *buf, size_t len)
|
||
|
{
|
||
|
return __syscall_read(f->fd, buf, len);
|
||
|
}
|