isblank() implementation.
[minix.git] / lib / libc / posix / _tcflush.c
blob84a6663ced2d64ceb659d3cf052b7b583e2788ba
1 /* tcflush() - flush buffered characters Author: Kees J. Bot
2 * 13 Jan 1994
3 */
4 #define tcflush _tcflush
5 #define ioctl _ioctl
6 #include <termios.h>
7 #include <sys/ioctl.h>
9 int tcflush(int fd, int queue_selector)
11 return(ioctl(fd, TCFLSH, &queue_selector));