musl-tcc/src/termios/tcflush.c
2022-03-20 16:48:53 +08:00

8 lines
114 B
C

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