Sign in
mojo
/
mojo-tools
/
042ad69c2975628a6f17bf72a5055d280c96aeb7
/
.
/
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
);
}