summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/common
diff options
context:
space:
mode:
authorKhem Raj <kraj@mvista.com>2009-03-05 19:42:42 +0000
committerKhem Raj <kraj@mvista.com>2009-03-05 19:42:42 +0000
commit1d0803e3b732a16d05ea333a27ec379c8d2bd1d6 (patch)
treeba7c1a00324a45308425a66e7bfee523dfaf0dd3 /libc/sysdeps/linux/common
parentb13e862a5e984c1d2740346bf87bbda87ac51876 (diff)
downloaduClibc-alpine-1d0803e3b732a16d05ea333a27ec379c8d2bd1d6.tar.bz2
uClibc-alpine-1d0803e3b732a16d05ea333a27ec379c8d2bd1d6.tar.xz
Merged revisions 25556 via svnmerge from
svn+ssh://kraj@svn.uclibc.org/svn/trunk/uClibc ........ r25556 | kraj | 2009-03-05 11:07:01 -0800 (Thu, 05 Mar 2009) | 1 line Define creat in an independent file ........
Diffstat (limited to 'libc/sysdeps/linux/common')
-rw-r--r--libc/sysdeps/linux/common/creat.c15
-rw-r--r--libc/sysdeps/linux/common/open.c5
2 files changed, 15 insertions, 5 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);
+}
diff --git a/libc/sysdeps/linux/common/open.c b/libc/sysdeps/linux/common/open.c
index 66c266371..9fb694d22 100644
--- a/libc/sysdeps/linux/common/open.c
+++ b/libc/sysdeps/linux/common/open.c
@@ -37,8 +37,3 @@ libc_hidden_def(open)
libc_hidden_weak(open)
strong_alias(open,__libc_open)
#endif
-
-int creat(const char *file, mode_t mode)
-{
- return open(file, O_WRONLY | O_CREAT | O_TRUNC, mode);
-}