]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/network/shutdown.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / network / shutdown.c
1 #include <sys/socket.h>
2 #include "syscall.h"
3
4 int shutdown(int fd, int how)
5 {
6 return socketcall(shutdown, fd, how, 0, 0, 0, 0);
7 }