Sign in
mojo
/
mojo-tools
/
1e91b52e4accde2210048e5018c8b4b60779220f
/
.
/
fusl
/
src
/
network
/
shutdown.c
blob: 77f6b543897fb8ea1aa9ac8f74355671f89f14b0 [
file
]
#include
<sys/socket.h>
#include
"syscall.h"
int
shutdown
(
int
fd
,
int
how
)
{
return
syscall
(
SYS_shutdown
,
fd
,
how
,
0
,
0
,
0
,
0
);
}