#include #include #include static inline _syscall2(long,socketcall,int,call,unsigned long *,args); int listen(int sockfd, int backlog) { unsigned long args[2]; args[0] = sockfd; args[1] = backlog; return socketcall(SYS_LISTEN, args); }