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