You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
222 B
C

#include <machine/syscall.h>
#include <sys/types.h>
#include "internal_syscall.h"
/* Read from a file. */
ssize_t _read(int file, void *ptr, size_t len)
{
return syscall_errno (SYS_read, 3, file, ptr, len, 0, 0, 0);
}