release
[hcoop/zz_old/debian/djbdns.git] / socket_listen.c
1 #include <sys/types.h>
2 #include <sys/param.h>
3 #include <sys/socket.h>
4 #include <netinet/in.h>
5 #include "socket.h"
6
7 int socket_listen(int s,int backlog)
8 {
9 return listen(s,backlog);
10 }