musl-tcc/src/termios/tcflush.c

8 lines
114 B
C

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