Sign in
akaros
/
upstream
/
9ce799f5a81541bbc7472b53696bc2a4390c83eb
/
.
/
tools
/
compilers
/
gcc-glibc
/
glibc-2.19-akaros
/
sysdeps
/
akaros
/
accept.c
blob: a915c492f1b616460e9a005c47817c561ea8c5cd [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
/* See feature_test_macros(7) */
#include
<sys/types.h>
#include
<sys/socket.h>
int
accept
(
int
fd
,
__SOCKADDR_ARG addr
,
socklen_t
*
__restrict alen
)
{
return
accept4
(
fd
,
addr
,
alen
,
0
);
}
libc_hidden_def
(
accept
)