iconv: fix missing bounds checking for shift_jis decoding
[musl.git] / src / termios / tcflush.c
blob502226694648b15ccc9b6240cd66f754175b524e
1 #include <termios.h>
2 #include <sys/ioctl.h>
4 int tcflush(int fd, int queue)
6 return ioctl(fd, TCFLSH, queue);