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

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

int fcntl(int fd, int cmd, void *arg);
int fcntl(int fd, int cmd, void *arg)
{
  __TEST_CANCEL();
  return __libc_fcntl(fd,cmd,arg);
}