aboutsummaryrefslogtreecommitdiff
path: root/src/network/listen.c
blob: b3818db13acedff62f831e8bd221eb5a2e6acd7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <sys/socket.h>
#include "syscall.h"

int listen(int fd, int backlog)
{
	return socketcall(listen, fd, backlog, 0, 0, 0, 0);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif