musl-tcc/src/termios/tcflush.c

8 lines
114 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <termios.h>
#include <sys/ioctl.h>
int tcflush(int fd, int queue)
{
return ioctl(fd, TCFLSH, queue);
}