From 1d0803e3b732a16d05ea333a27ec379c8d2bd1d6 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 5 Mar 2009 19:42:42 +0000 Subject: 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 ........ --- libc/sysdeps/linux/common/open.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'libc/sysdeps/linux/common/open.c') 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); -} -- cgit v1.2.3