diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-05-30 07:30:01 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-05-30 07:30:01 +0000 |
commit | 241ed9e3398a00d39a3c49da17e428a968091c51 (patch) | |
tree | d052d546a2eec7d1eaeb0cc8c2e5c82fa0cf26ab | |
parent | b224f94761aebcd623cecb3b1050b89c945d7808 (diff) | |
download | coreutils-241ed9e3398a00d39a3c49da17e428a968091c51.tar.xz |
(getuid, getgid, getuid, getegid)
[!defined _POSIX_VERSION]: Remove decls; not needed these days.
-rw-r--r-- | lib/euidaccess.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/euidaccess.c b/lib/euidaccess.c index 7f8c238e2..2b36fc64a 100644 --- a/lib/euidaccess.c +++ b/lib/euidaccess.c @@ -1,6 +1,6 @@ /* euidaccess -- check if effective user id can access file - Copyright (C) 1990, 1991, 1995, 1998, 2000, 2003, 2004 Free + Copyright (C) 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -41,13 +41,6 @@ # include <libgen.h> #endif -#ifndef _POSIX_VERSION -uid_t getuid (); -gid_t getgid (); -uid_t geteuid (); -gid_t getegid (); -#endif - #include <errno.h> #ifndef __set_errno # define __set_errno(val) errno = (val) |