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
/
atosfix64.c
blob
5340b1ee2a6d79804a18c5dcf4a57306d1d2515d
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
_atosfix64_r
(
struct
_reent
*
reent
,
12
const char
*
s
)
13
{
14
return
_strtosfix64_r
(
reent
,
s
,
NULL
);
15
}
16
17
#ifndef _REENT_ONLY
18
__int64_t
19
atosfix64
(
const char
*
s
)
20
{
21
return
strtosfix64
(
s
,
NULL
);
22
}
23
24
#endif
/* !_REENT_ONLY */
25
26
#endif
/* __SPE__ */