blob: abdb4834a0a14c99ceef8ec51fda4687e586d17b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <sys/types.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include "socket.h"
int socket_listen(int s,int backlog)
{
return listen(s,backlog);
}
|