summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/listen.c
blob: 56a51be06ddd8d6f5eca6efa4ab33534a4c52861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <linux/net.h>

extern int socketcall(int callno,long* args);

int listen(int a, int b) {
#ifdef __i386__
  return socketcall(SYS_LISTEN, (long*)&a);
#else
  unsigned long args[] = { a, b, 0 };
  return socketcall(SYS_LISTEN, args);
#endif
}