Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git] / newlib / libc / machine / powerpc / atosfix64.c
blob5340b1ee2a6d79804a18c5dcf4a57306d1d2515d
1 /*
2 * Jeff Johnston - 02/13/2002
3 */
5 #ifdef __SPE__
7 #include <stdlib.h>
8 #include <_ansi.h>
10 __int64_t
11 _atosfix64_r (struct _reent *reent,
12 const char *s)
14 return _strtosfix64_r (reent, s, NULL);
17 #ifndef _REENT_ONLY
18 __int64_t
19 atosfix64 (const char *s)
21 return strtosfix64 (s, NULL);
24 #endif /* !_REENT_ONLY */
26 #endif /* __SPE__ */