Projet_SETI_RISC-V/riscv-gnu-toolchain/newlib/libgloss/iq2000/read.c
2023-03-06 14:48:14 +01:00

13 lines
185 B
C

#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "trap.h"
_read (int file,
char *ptr,
size_t len)
{
return TRAP0 (SYS_read, file, ptr, len);
}