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

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

int read(int fd, void *buf, size_t count)
{
  __TEST_CANCEL();
  return __libc_read(fd,buf,count);
}