AIX implementation of access.

This commit is contained in:
Ulrich Drepper 2000-03-21 01:12:05 +00:00
parent a26c24f453
commit 23ef7b6154

View 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)