blob: b842952349ef69ec876c264365a1d5ae4f75f030 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <unistd.h>
#include <fcntl.h>
int euidaccess(const char *filename, int amode)
{
return faccessat(AT_FDCWD, filename, amode, AT_EACCESS);
}
weak_alias(euidaccess, eaccess);
|