use weak symbols for the POSIX functions that will be used by C threads
[musl.git] / src / network / shutdown.c
blob10ca21aa3cbeaaa95f4ce7f24aecdb64f2bd924d
1 #include <sys/socket.h>
2 #include "syscall.h"
4 int shutdown(int fd, int how)
6 return socketcall(shutdown, fd, how, 0, 0, 0, 0);