OSDN Git Service

b720d3824f7fc1b7fc095e680cda78ef562e568f
[pf3gnuchains/sourceware.git] / newlib / libc / machine / powerpc / atosfix64.c
1 /*
2  * Jeff Johnston - 02/13/2002
3  */
4
5 #include <stdlib.h>
6 #include <_ansi.h>
7
8 __int64_t
9 _DEFUN (_atosfix64_r, (reent, s),
10         struct _reent *reent _AND
11         _CONST char *s)
12 {
13   return _strtosfix64_r (reent, s, NULL);
14 }
15
16 #ifndef _REENT_ONLY
17 __int64_t
18 _DEFUN (atosfix64, (s),
19         _CONST char *s)
20 {
21   return strtosfix64 (s, NULL);
22 }
23
24 #endif /* !_REENT_ONLY */
25