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