summaryrefslogtreecommitdiff
path: root/lib/libc/termios/tcflush.c
blob: b37b218d6fcb40f0fde97966be0b341b6f63eaad (plain)
1
2
3
4
5
6
7
8
#include <termios.h>
#include <syscall.h>
#include <asm-generic/ioctls.h>

int tcflush(int fildes, int queue_selector)
{
	return syscall(ioctl, fildes, TCFLSH, queue_selector);
}