From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:12:05 +0000 (+0000) Subject: AIX implementation of access. X-Git-Tag: glibc-2.16-ports-before-merge~2636 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=23ef7b61549d7aa931ac3160a790255657915118;p=thirdparty%2Fglibc.git AIX implementation of access. --- diff --git a/sysdeps/unix/sysv/aix/access.c b/sysdeps/unix/sysv/aix/access.c new file mode 100644 index 00000000000..e25ee8f686d --- /dev/null +++ b/sysdeps/unix/sysv/aix/access.c @@ -0,0 +1,10 @@ +#include + +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)