mirror of
https://github.com/fluencelabs/musl
synced 2025-06-27 05:32:06 +00:00
10 lines
232 B
C
10 lines
232 B
C
![]() |
#define _GNU_SOURCE
|
||
|
#include <sys/socket.h>
|
||
|
#include "syscall.h"
|
||
|
#include "libc.h"
|
||
|
|
||
|
int accept4(int fd, struct sockaddr *restrict addr, socklen_t *restrict len, int flg)
|
||
|
{
|
||
|
return socketcall_cp(accept4, fd, addr, len, flg, 0, 0);
|
||
|
}
|