Przeglądaj źródła

Define creat in an independent file

Khem Raj 15 lat temu
rodzic
commit
e190a24231

+ 15 - 0
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);
+}

+ 0 - 5
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);
-}