repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
gcc
/
newlib
/
libc
/
machine
/
powerpc
/
atoufix32.c
blob
ee29ac586e95b68010fd6eb031c6f3da0a9b2980
1
/*
2
* Jeff Johnston - 02/13/2002
3
*/
4
5
#ifdef __SPE__
6
7
#include <stdlib.h>
8
#include <_ansi.h>
9
10
__uint32_t
11
_DEFUN
(
_atoufix32_r
, (
reent
,
s
),
12
struct
_reent
*
reent _AND
13
_CONST
char
*
s
)
14
{
15
return
_strtoufix32_r
(
reent
,
s
,
NULL
);
16
}
17
18
#ifndef _REENT_ONLY
19
__uint32_t
20
_DEFUN
(
atoufix32
, (
s
),
21
_CONST
char
*
s
)
22
{
23
return
strtoufix32
(
s
,
NULL
);
24
}
25
26
#endif
/* !_REENT_ONLY */
27
28
#endif
/* __SPE__ */