| 123456789101112131415161718192021 | /* * access() for uClibc * * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org> * * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */#include <sys/syscall.h>#include <unistd.h>#if defined __NR_faccessat && !defined __NR_access# include <fcntl.h>int access(const char *pathname, int mode){	return faccessat(AT_FDCWD, pathname, mode, 0);}#else_syscall2(int, access, const char *, pathname, int, mode)#endif
 |