summaryrefslogtreecommitdiffstats
path: root/newlib/libc/machine/spu/creat.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/machine/spu/creat.c')
-rw-r--r--newlib/libc/machine/spu/creat.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/newlib/libc/machine/spu/creat.c b/newlib/libc/machine/spu/creat.c
deleted file mode 100644
index 3cd714306..000000000
--- a/newlib/libc/machine/spu/creat.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/* creat() "system call" */
-
-/* copied from libc/posix/creat.c */
-
-/* This is needed by f2c and therefore the SPEC benchmarks. */
-
-#include <fcntl.h>
-
-int
-_DEFUN(creat, (path, mode),
- const char *path _AND
- mode_t mode)
-{
- return open (path, O_WRONLY | O_CREAT | O_TRUNC, mode);
-}