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