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

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

int creat(const char *pathname, mode_t mode)
{
  __TEST_CANCEL();
  return __libc_creat(pathname,mode);
}