summaryrefslogtreecommitdiff
path: root/lib/euidaccess.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-05-30 07:30:01 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-05-30 07:30:01 +0000
commit241ed9e3398a00d39a3c49da17e428a968091c51 (patch)
treed052d546a2eec7d1eaeb0cc8c2e5c82fa0cf26ab /lib/euidaccess.c
parentb224f94761aebcd623cecb3b1050b89c945d7808 (diff)
downloadcoreutils-241ed9e3398a00d39a3c49da17e428a968091c51.tar.xz
(getuid, getgid, getuid, getegid)
[!defined _POSIX_VERSION]: Remove decls; not needed these days.
Diffstat (limited to 'lib/euidaccess.c')
-rw-r--r--lib/euidaccess.c9
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)