From 7c80f09bae1845f82b8fec0486c4e8a80967a1e8 Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Fri, 21 Sep 2001 22:50:39 +0000 Subject: [PATCH] o Update unistd.h with the prototype for the new eaccess(2) system call. Obtained from: TrustedBSD Project --- include/unistd.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/unistd.h b/include/unistd.h index 0829adf3cd2..442314cd99f 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -65,6 +65,7 @@ int chown __P((const char *, uid_t, gid_t)); int close __P((int)); int dup __P((int)); int dup2 __P((int, int)); +int eaccess __P((const char *, int)); int execl __P((const char *, const char *, ...)); int execle __P((const char *, const char *, ...)); int execlp __P((const char *, const char *, ...));