Sign in
mojo
/
mojo
/
2f64806b047b83f7c49e0525d8f3499d7be23e27
/
.
/
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
);
}