aboutsummaryrefslogtreecommitdiff
path: root/src/termios/tcflush.c
blob: 8a119cb048d3100fe186d3d3462344104d342a26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <termios.h>
#include <sys/ioctl.h>

int tcflush(int fd, int queue)
{
	return ioctl(fd, TCFLSH, queue);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif