summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/creat64.c
blob: 8cf897b5769703dc29922c08349fda12ec28906b (plain)
1
2
3
4
5
6
7
8
9
#include <fcntl.h>

#ifndef O_LARGEFILE
#define O_LARGEFILE 0
#endif

int creat64(const char *file,mode_t mode) {
  return open(file,O_WRONLY|O_CREAT|O_TRUNC|O_LARGEFILE,mode);
}