Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
4a8335b2248d934e2e40386af4f1b0495b3c173d
/
.
/
src
/
network
/
shutdown.c
blob: 10ca21aa3cbeaaa95f4ce7f24aecdb64f2bd924d [
file
]
#include
<sys/socket.h>
#include
"syscall.h"
int
shutdown
(
int
fd
,
int
how
)
{
return
socketcall
(
shutdown
,
fd
,
how
,
0
,
0
,
0
,
0
);
}