diff options
author | Khem Raj <kraj@mvista.com> | 2009-03-05 19:42:42 +0000 |
---|---|---|
committer | Khem Raj <kraj@mvista.com> | 2009-03-05 19:42:42 +0000 |
commit | 1d0803e3b732a16d05ea333a27ec379c8d2bd1d6 (patch) | |
tree | ba7c1a00324a45308425a66e7bfee523dfaf0dd3 /libc/sysdeps/linux/common/creat.c | |
parent | b13e862a5e984c1d2740346bf87bbda87ac51876 (diff) | |
download | uClibc-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/creat.c')
-rw-r--r-- | libc/sysdeps/linux/common/creat.c | 15 |
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); +} |