1 2 3 4 5 6 7 8 9 10 11
#define _GNU_SOURCE #include <unistd.h> #include <fcntl.h> #include "libc.h" int euidaccess(const char *filename, int amode) { return faccessat(AT_FDCWD, filename, amode, AT_EACCESS); } weak_alias(euidaccess, eaccess);