summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/creat.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/creat.c')
-rw-r--r--libc/sysdeps/linux/common/creat.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/creat.c b/libc/sysdeps/linux/common/creat.c
new file mode 100644
index 000000000..92dbf329c
--- /dev/null
+++ b/libc/sysdeps/linux/common/creat.c
@@ -0,0 +1,15 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * creat() for uClibc
+ *
+ * Copyright (C) 2009 <kraj@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#include <fcntl.h>
+
+int creat(const char *file, mode_t mode)
+{
+ return open(file, O_WRONLY | O_CREAT | O_TRUNC, mode);
+}