summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/creat.c
blob: 82145b51583da92c4cfec911e6532d13a5d6f0f1 (plain)
1
2
3
4
5
#include <fcntl.h>

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