2018-05-02 06:20:06 +03:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <syscall.h>
|
2018-12-10 04:09:27 +03:00
|
|
|
#include <syscall_nums.h>
|
2018-05-02 06:20:06 +03:00
|
|
|
|
2018-12-10 04:09:27 +03:00
|
|
|
DEFN_SYSCALL3(read, SYS_READ, int, char *, int);
|
2018-05-02 06:20:06 +03:00
|
|
|
|
|
|
|
int read(int file, void *ptr, size_t len) {
|
|
|
|
return syscall_read(file,ptr,len);
|
|
|
|
}
|