listen.c 135 B

1234567
  1. #include <sys/socket.h>
  2. #include "syscall.h"
  3. int listen(int fd, int backlog)
  4. {
  5. return socketcall(listen, fd, backlog, 0, 0, 0, 0);
  6. }