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/atosfix64.c')
-rw-r--r--newlib/libc/machine/powerpc/atosfix64.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/newlib/libc/machine/powerpc/atosfix64.c b/newlib/libc/machine/powerpc/atosfix64.c
deleted file mode 100644
index b720d3824..000000000
--- a/newlib/libc/machine/powerpc/atosfix64.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Jeff Johnston - 02/13/2002
- */
-
-#include <stdlib.h>
-#include <_ansi.h>
-
-__int64_t
-_DEFUN (_atosfix64_r, (reent, s),
- struct _reent *reent _AND
- _CONST char *s)
-{
- return _strtosfix64_r (reent, s, NULL);
-}
-
-#ifndef _REENT_ONLY
-__int64_t
-_DEFUN (atosfix64, (s),
- _CONST char *s)
-{
- return strtosfix64 (s, NULL);
-}
-
-#endif /* !_REENT_ONLY */
-