mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-04 19:00:09 +00:00
11 lines
202 B
C
11 lines
202 B
C
|
#include <unistd.h>
|
||
|
|
||
|
extern int accessx (const char *name, int type, int who);
|
||
|
|
||
|
int
|
||
|
__access (const char *name, int type)
|
||
|
{
|
||
|
return accessx (name, type, ACC_INVOKER);
|
||
|
}
|
||
|
strong_alias (__access, access)
|