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