musl/src/termios/tcflush.c
2011-02-12 00:22:29 -05:00

7 lines
114 B
C

#include <termios.h>
#include <sys/ioctl.h>
int tcflush(int fd, int queue)
{
return ioctl(fd, TCFLSH, queue);
}