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
/
atosfix64.c
blob
109baf7b6ee732d6e5791d674102868d0b223bd3
1
/*
2
* Jeff Johnston - 02/13/2002
3
*/
4
5
#ifdef __SPE__
6
7
#include <stdlib.h>
8
#include <_ansi.h>
9
10
__int64_t
11
_DEFUN
(
_atosfix64_r
, (
reent
,
s
),
12
struct
_reent
*
reent _AND
13
_CONST
char
*
s
)
14
{
15
return
_strtosfix64_r
(
reent
,
s
,
NULL
);
16
}
17
18
#ifndef _REENT_ONLY
19
__int64_t
20
_DEFUN
(
atosfix64
, (
s
),
21
_CONST
char
*
s
)
22
{
23
return
strtosfix64
(
s
,
NULL
);
24
}
25
26
#endif
/* !_REENT_ONLY */
27
28
#endif
/* __SPE__ */