9ff1ecd5629537346c720e444a2f6ab2c37284e1
[musl] / src / termios / tcdrain.c
1 #include <termios.h>
2 #include <sys/ioctl.h>
3 #include "libc.h"
4
5 int tcdrain(int fd)
6 {
7         int ret;
8         CANCELPT_BEGIN;
9         ret = ioctl(fd, TCSBRK, 1);
10         CANCELPT_TRY;
11         CANCELPT_END;
12         return ret;
13 }