Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git] / newlib / libc / sys / rdos / stat.c
blob6483f2aff70ee3bf14b456579f24452d2c300049
1 #include "config.h"
2 #include <_ansi.h>
3 #include <_syslist.h>
4 #include <sys/types.h>
5 #include <sys/stat.h>
6 #include <errno.h>
8 int stat(const char *__restrict file, struct stat *__restrict st)
10 errno = ENOSYS;
11 return -1;