diff options
Diffstat (limited to 'src/unistd/read.c')
-rw-r--r-- | src/unistd/read.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/read.c b/src/unistd/read.c index f3589c05..e902fe41 100644 --- a/src/unistd/read.c +++ b/src/unistd/read.c @@ -5,3 +5,11 @@ ssize_t read(int fd, void *buf, size_t count) { return syscall_cp(SYS_read, fd, buf, count); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |