remove some stray trailing space characters
[musl] / src / network / shutdown.c
index 91950c8..10ca21a 100644 (file)
@@ -1,9 +1,7 @@
 #include <sys/socket.h>
 #include "syscall.h"
-#include "socketcall.h"
 
 int shutdown(int fd, int how)
 {
-       unsigned long args[] = { fd, how };
-       return syscall2(__NR_socketcall, SYS_SHUTDOWN, (long)args);
+       return socketcall(shutdown, fd, how, 0, 0, 0, 0);
 }