diff options
Diffstat (limited to 'libc/sysdeps/linux/common/creat.c')
-rw-r--r-- | libc/sysdeps/linux/common/creat.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libc/sysdeps/linux/common/creat.c b/libc/sysdeps/linux/common/creat.c deleted file mode 100644 index 429b4824c..000000000 --- a/libc/sysdeps/linux/common/creat.c +++ /dev/null @@ -1,16 +0,0 @@ -/* vi: set sw=4 ts=4: */ -/* - * open() for uClibc - * - * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org> - * - * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. - */ -#include <fcntl.h> - -extern int __libc_open(const char *file, int flags, ...); - -int creat(const char *file, mode_t mode) -{ - return __libc_open(file, O_WRONLY | O_CREAT | O_TRUNC, mode); -} |