fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libc / machine / powerpc / atoufix64.c
blobe5eefc42369fee3b1d1e1a2a9c13f36beb119d39
1 /*
2 * Jeff Johnston - 02/13/2002
3 */
5 #ifdef __SPE__
7 #include <stdlib.h>
8 #include <_ansi.h>
10 __uint64_t
11 _DEFUN (_atoufix64_r, (reent, s),
12 struct _reent *reent _AND
13 _CONST char *s)
15 return _strtoufix64_r (reent, s, NULL);
18 #ifndef _REENT_ONLY
19 __uint64_t
20 _DEFUN (atoufix64, (s),
21 _CONST char *s)
23 return strtoufix64 (s, NULL);
26 #endif /* !_REENT_ONLY */
28 #endif /* __SPE__ */