summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/open.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/open.c')
-rw-r--r--libc/sysdeps/linux/common/open.c5
1 files changed, 0 insertions, 5 deletions
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);
-}