repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move msghdr and cmsghdr out of bits/socket.h
[musl.git]
/
src
/
legacy
/
euidaccess.c
blob
6e1f39855e89e91cc1bc1b73eab385355ef1f7ed
1
#define _GNU_SOURCE
2
#include <unistd.h>
3
#include <fcntl.h>
4
5
int
euidaccess
(
const char
*
filename
,
int
amode
)
6
{
7
return
faccessat
(
AT_FDCWD
,
filename
,
amode
,
AT_EACCESS
);
8
}
9
10
weak_alias
(
euidaccess
,
eaccess
);