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/powerpc/atoufix64.c')
-rw-r--r--newlib/libc/machine/powerpc/atoufix64.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/newlib/libc/machine/powerpc/atoufix64.c b/newlib/libc/machine/powerpc/atoufix64.c
deleted file mode 100644
index e5eefc423..000000000
--- a/newlib/libc/machine/powerpc/atoufix64.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Jeff Johnston - 02/13/2002
- */
-
-#ifdef __SPE__
-
-#include <stdlib.h>
-#include <_ansi.h>
-
-__uint64_t
-_DEFUN (_atoufix64_r, (reent, s),
- struct _reent *reent _AND
- _CONST char *s)
-{
- return _strtoufix64_r (reent, s, NULL);
-}
-
-#ifndef _REENT_ONLY
-__uint64_t
-_DEFUN (atoufix64, (s),
- _CONST char *s)
-{
- return strtoufix64 (s, NULL);
-}
-
-#endif /* !_REENT_ONLY */
-
-#endif /* __SPE__ */