diff options
Diffstat (limited to 'src/stdio/__stdio_read.c')
-rw-r--r-- | src/stdio/__stdio_read.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stdio/__stdio_read.c b/src/stdio/__stdio_read.c new file mode 100644 index 00000000..ee7e1258 --- /dev/null +++ b/src/stdio/__stdio_read.c @@ -0,0 +1,6 @@ +#include "stdio_impl.h" + +size_t __stdio_read(FILE *f, unsigned char *buf, size_t len) +{ + return __syscall_read(f->fd, buf, len); +} |