mirror of
git://sourceware.org/git/glibc.git
synced 2024-12-27 04:41:02 +08:00
AIX implementation of access.
This commit is contained in:
parent
a26c24f453
commit
23ef7b6154
10
sysdeps/unix/sysv/aix/access.c
Normal file
10
sysdeps/unix/sysv/aix/access.c
Normal file
@ -0,0 +1,10 @@
|
||||
#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)
|
Loading…
Reference in New Issue
Block a user