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)