xref: /aosp_15_r20/external/musl/src/network/shutdown.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <sys/socket.h>
2 #include "syscall.h"
3 
shutdown(int fd,int how)4 int shutdown(int fd, int how)
5 {
6 	return socketcall(shutdown, fd, how, 0, 0, 0, 0);
7 }
8