4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 21:09:22 +08:00

10 lines
205 B
C

#include <machine/syscall.h>
#include "internal_syscall.h"
/* Permissions of a file (by name). */
int
_access(const char *file, int mode)
{
return syscall_errno (SYS_access, file, mode, 0, 0, 0, 0);
}