blob: 5fce178fdc3913c5968e2ef39ba05e979e9827e7 [file] [log] [blame]
#include <termios.h>
#include <errno.h>
int tcdrain(int fd) {
// TODO(kulakowski) terminal handling.
errno = ENOSYS;
return -1;
}