lang-bootstrap/05/musl-final/src/termios/tcflush.c
2025-04-05 10:55:40 +01:00

7 lines
114 B
C

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