| Index: fusl/src/unistd/readv.c
|
| diff --git a/fusl/src/unistd/readv.c b/fusl/src/unistd/readv.c
|
| index e45cb484f09ae3d361824e160d75e3671fb5ae56..adad6a81f3879f265e386354fd36226b9dd9d888 100644
|
| --- a/fusl/src/unistd/readv.c
|
| +++ b/fusl/src/unistd/readv.c
|
| @@ -2,7 +2,6 @@
|
| #include "syscall.h"
|
| #include "libc.h"
|
|
|
| -ssize_t readv(int fd, const struct iovec *iov, int count)
|
| -{
|
| - return syscall_cp(SYS_readv, fd, iov, count);
|
| +ssize_t readv(int fd, const struct iovec* iov, int count) {
|
| + return syscall_cp(SYS_readv, fd, iov, count);
|
| }
|
|
|