about summary refs log tree commit diff
path: root/src/legacy/euidaccess.c
Commit message (Collapse)AuthorAgeFilesLines
* collapse euidaccess to a call to faccessatRich Felker2013-08-031-9/+1
| | | | | | it turns out Linux is buggy for faccessat, just like fchmodat: the kernel does not actually take a flags argument. so we're going to have to emulate it there.
* add legacy euidaccess function and eaccess alias for itRich Felker2013-08-031-0/+18
this is mainly for ABI compat purposes.