Blame src/network/nt32/accept.c

716654
/**************************************************************************/
716654
/*  mmglue: midipix architecture- and target-specific bits for musl libc  */
716654
/*  Copyright (C) 2013--2023  SysDeer Technologies, LLC                   */
716654
/*  Released under the Standard MIT License; see COPYING.MMGLUE.          */
716654
/**************************************************************************/
716654
c4da96
#include <sys/socket.h>
c4da96
#include "syscall.h"
c4da96
#include "libc.h"
c4da96
c4da96
int accept(int fd, struct sockaddr *restrict addr, socklen_t *restrict len)
c4da96
{
c4da96
	return socketcall_cp(accept4, fd, addr, len, 0, 0, 0);
c4da96
}