Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/machine/spu/puts.c')
-rw-r--r--newlib/libc/machine/spu/puts.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/newlib/libc/machine/spu/puts.c b/newlib/libc/machine/spu/puts.c
deleted file mode 100644
index 06f4b87b6..000000000
--- a/newlib/libc/machine/spu/puts.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <stdio.h>
-
-#include "c99ppe.h"
-
-#ifndef _REENT_ONLY
-
-int
-_DEFUN (puts, (s),
- char _CONST * s)
-{
- CHECK_STD_INIT(_REENT);
-
- /* The return value gets written over s
- */
- return __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_PUTS, &s);
-}
-
-#endif /* ! _REENT_ONLY */