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