repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git]
/
newlib
/
libc
/
machine
/
powerpc
/
atoufix64.c
blob
cf9517e9535d4b054595e2e060a291a27a15c213
1
/*
2
* Jeff Johnston - 02/13/2002
3
*/
4
5
#ifdef __SPE__
6
7
#include <stdlib.h>
8
#include <_ansi.h>
9
10
__uint64_t
11
_atoufix64_r
(
struct
_reent
*
reent
,
12
const char
*
s
)
13
{
14
return
_strtoufix64_r
(
reent
,
s
,
NULL
);
15
}
16
17
#ifndef _REENT_ONLY
18
__uint64_t
19
atoufix64
(
const char
*
s
)
20
{
21
return
strtoufix64
(
s
,
NULL
);
22
}
23
24
#endif
/* !_REENT_ONLY */
25
26
#endif
/* __SPE__ */