musl-tcc/src/network/listen.c

8 lines
135 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <sys/socket.h>
#include "syscall.h"
int listen(int fd, int backlog)
{
return socketcall(listen, fd, backlog, 0, 0, 0, 0);
}