fix typo in wordexp.h (note that the function is still unimplemented)
[musl] / src / termios / tcflush.c
1 #include <termios.h>
2 #include <sys/ioctl.h>
3
4 int tcflush(int fd, int queue)
5 {
6         return ioctl(fd, TCFLSH, queue);
7 }