diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-03-17 04:10:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-03-17 04:10:16 +0000 |
commit | 3365152cb0dc59567f457f130c8905c505719ed1 (patch) | |
tree | bf9ea8af566d8c3ea1f317871ba42252591ee8b7 /sysdeps/mach/hurd | |
parent | 4b3769bc7ccc6f2cd6eaf0464f27b3c7025f6215 (diff) | |
download | glibc-3365152cb0dc59567f457f130c8905c505719ed1.tar.gz glibc-3365152cb0dc59567f457f130c8905c505719ed1.tar.xz glibc-3365152cb0dc59567f457f130c8905c505719ed1.zip |
Define as __euidaccess and make euidaccess weak alias.
Diffstat (limited to 'sysdeps/mach/hurd')
-rw-r--r-- | sysdeps/mach/hurd/euidaccess.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/euidaccess.c b/sysdeps/mach/hurd/euidaccess.c index bbd2d21afe..d206b8644c 100644 --- a/sysdeps/mach/hurd/euidaccess.c +++ b/sysdeps/mach/hurd/euidaccess.c @@ -1,5 +1,5 @@ /* Test for access to FILE using effective UID and GID. Hurd version. -Copyright (C) 1991, 1995 Free Software Foundation, Inc. +Copyright (C) 1991, 1995, 1997 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -24,7 +24,7 @@ Cambridge, MA 02139, USA. */ #include <hurd.h> int -euidaccess (file, type) +__euidaccess (file, type) const char *file; int type; { @@ -56,3 +56,4 @@ euidaccess (file, type) return 0; } +weak_alias (__euidaccess, euidaccess) |