ensure that the compiler doesn't try to reorder around atomic ops
[oweals/musl.git] / 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 }