Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git] / newlib / libc / sys / h8300hms / syscalls.c
blobb9ec17a529acbe5561276a9cf7a718bbb986466b
1 /* Operating system stubs, set up for the MRI simulator */
3 #include <_ansi.h>
4 #include <errno.h>
6 int _isatty(file)
7 int file;
9 return 1;
12 int
13 _unlink (path)
14 const char *path;
16 errno = EIO;
17 return -1;