about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/aix/access.c
blob: e25ee8f686d30399d46154098bd45f0d5b68a4e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
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)