diff options
author | Jim Meyering <jim@meyering.net> | 2003-02-10 22:47:30 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-02-10 22:47:30 +0000 |
commit | 53b11c2b17233b88cd836ea104ef5a0e2ad76ff8 (patch) | |
tree | a274adfb0405bb4fc056e0f6ae92ac054ba04fe3 /lib | |
parent | f18e3f9fae25b6daa8140725e5d1dadafd16373f (diff) | |
download | coreutils-53b11c2b17233b88cd836ea104ef5a0e2ad76ff8.tar.xz |
Include "euidaccess.h".
Diffstat (limited to 'lib')
-rw-r--r-- | lib/euidaccess.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/euidaccess.c b/lib/euidaccess.c index e0fdf9de2..138c57a2b 100644 --- a/lib/euidaccess.c +++ b/lib/euidaccess.c @@ -1,5 +1,5 @@ /* euidaccess -- check if effective user id can access file - Copyright (C) 1990, 1991, 1995, 1998, 2000 Free Software Foundation, Inc. + Copyright (C) 1990, 1991, 1995, 1998, 2000, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -69,6 +69,7 @@ extern int errno; #ifndef __set_errno # define __set_errno(val) errno = (val) #endif +#include "euidaccess.h" #if defined(EACCES) && !defined(EACCESS) # define EACCESS EACCES |