summaryrefslogtreecommitdiff
path: root/src/termios/tcflush.c
blob: 98a89749c0fcb6b130f155b473ce70b009e03640 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <termios.h>
#include "_termios.h"

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

/*
POSIX(1)
*/