From e190a24231b7c6d73969cc297e601bc1828e3396 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 5 Mar 2009 19:07:01 +0000 Subject: Define creat in an independent file --- libc/sysdeps/linux/common/creat.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 libc/sysdeps/linux/common/creat.c (limited to 'libc/sysdeps/linux/common/creat.c') 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 + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#include + +int creat(const char *file, mode_t mode) +{ + return open(file, O_WRONLY | O_CREAT | O_TRUNC, mode); +} -- cgit v1.2.3