diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/shutdown.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/shutdown.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sysdeps/unix/sysv/linux/shutdown.c b/sysdeps/unix/sysv/linux/shutdown.c index 26772c9..4cee357 100644 --- a/sysdeps/unix/sysv/linux/shutdown.c +++ b/sysdeps/unix/sysv/linux/shutdown.c @@ -15,19 +15,14 @@ License along with the GNU C Library; if not, see <https://www.gnu.org/licenses/>. */ -#include <errno.h> -#include <signal.h> #include <sys/socket.h> - #include <socketcall.h> -#include <kernel-features.h> -#include <sys/syscall.h> int __shutdown (int fd, int how) { #ifdef __ASSUME_SHUTDOWN_SYSCALL - return INLINE_SYSCALL (shutdown, 2, fd, how); + return INLINE_SYSCALL_CALL (shutdown, fd, how); #else return SOCKETCALL (shutdown, fd, how); #endif |