blob: d9c2c641d940f4386e4129f442395de3fb52f722 [file] [log] [blame]
#include <termios.h>
#include <sys/ioctl.h>
int tcflush(int fd, int queue) {
return ioctl(fd, TCFLSH, queue);
}