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