libredirect: add access syscall

This commit is contained in:
Longrin Wischnewski 2015-01-20 18:52:37 +01:00
parent e92c942d1d
commit 19f0b18b99

View file

@ -102,3 +102,10 @@ int __xstat(int ver, const char * path, struct stat * st)
char buf[PATH_MAX];
return __xstat_real(ver, rewrite(path, buf), st);
}
int * access(const char * path, int mode)
{
int * (*access_real) (const char *, int mode) = dlsym(RTLD_NEXT, "access");
char buf[PATH_MAX];
return access_real(rewrite(path, buf), mode);
}