summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_sys_tcdrain.c
blob: d5d94978ba88a2ea19c2e4070612fd98ea9b2251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <unistd.h>

#include <pthread.h>
#include "thread_internal.h"

#include <termios.h>

int tcdrain(int fd)
{
  __TEST_CANCEL();
  return __libc_tcdrain(fd);
}