diff options
Diffstat (limited to 'lib/libc/socket/accept4.c')
| -rw-r--r-- | lib/libc/socket/accept4.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/socket/accept4.c b/lib/libc/socket/accept4.c index 80b05488..25c28c0e 100644 --- a/lib/libc/socket/accept4.c +++ b/lib/libc/socket/accept4.c @@ -3,8 +3,7 @@ #include <sys/socket.h> // for accept4, socklen_t #include <syscall.h> // for __syscall_4, syscall -int accept4(int socket, struct sockaddr *restrict address, - socklen_t *restrict address_len, int flag) +int accept4(int socket, struct sockaddr *restrict address, socklen_t *restrict address_len, int flag) { return syscall(accept4, socket, address, address_len, flag); } |
