Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
termios
/
tcdrain.c
blob: 6e43afb7564001143ad096e85cb6ba2a93462262 [
file
]
#include
<termios.h>
#include
<sys/ioctl.h>
#include
"libc.h"
#include
"syscall.h"
int
tcdrain
(
int
fd
)
{
return
syscall_cp
(
SYS_ioctl
,
fd
,
TCSBRK
,
1
);
}