Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #include <sys/socket.h> | 1 #include <sys/socket.h> |
| 2 #include "syscall.h" | 2 #include "syscall.h" |
| 3 | 3 |
| 4 int shutdown(int fd, int how) | 4 int shutdown(int fd, int how) { |
| 5 { | 5 return socketcall(shutdown, fd, how, 0, 0, 0, 0); |
| 6 » return socketcall(shutdown, fd, how, 0, 0, 0, 0); | |
| 7 } | 6 } |
| OLD | NEW |