diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-03-17 03:59:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-03-17 03:59:07 +0000 |
commit | a18be620a18ac0fb942baef5839a2d60f92e2d7f (patch) | |
tree | 97bc6f3e58fce8d3eb2c939d0cd9da8616f4b839 | |
parent | 177f9d5cd4104d27ffc7b2003f75345962062c03 (diff) | |
download | glibc-a18be620a18ac0fb942baef5839a2d60f92e2d7f.tar glibc-a18be620a18ac0fb942baef5839a2d60f92e2d7f.tar.gz glibc-a18be620a18ac0fb942baef5839a2d60f92e2d7f.tar.bz2 glibc-a18be620a18ac0fb942baef5839a2d60f92e2d7f.zip |
Add prototype for __euidaccess.
-rw-r--r-- | posix/unistd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/posix/unistd.h b/posix/unistd.h index 5c8d1b7f04..a19de2ae27 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -171,6 +171,7 @@ extern int access __P ((__const char *__name, int __type)); #ifdef __USE_GNU /* Test for access to NAME using the effective UID and GID (as normal file operations use). */ +extern int __euidaccess __P ((__const char *__name, int __type)); extern int euidaccess __P ((__const char *__name, int __type)); #endif |