f84ad03b7a54c57a5fff6322573cafd054f889fa
[musl] / listen.c
1 #include <sys/socket.h>
2 #include "syscall.h"
3
4 int listen(int fd, int backlog)
5 {
6         return socketcall(listen, fd, backlog, 0, 0, 0, 0);
7 }