blob: 6e43afb7564001143ad096e85cb6ba2a93462262 [file] [log] [blame]
#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);
}