diff options
author | rwatson <rwatson@FreeBSD.org> | 2001-09-21 22:50:39 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2001-09-21 22:50:39 +0000 |
commit | be73dee8bb66fdf2cb4fc74b966d7dfcbc2b7cce (patch) | |
tree | 8bd5a6d55444f0f1c381f75e9795966144650b73 /include | |
parent | 69b2d3f3db54f4cde3dd60308204bdabacae595d (diff) | |
download | FreeBSD-src-be73dee8bb66fdf2cb4fc74b966d7dfcbc2b7cce.zip FreeBSD-src-be73dee8bb66fdf2cb4fc74b966d7dfcbc2b7cce.tar.gz |
o Update unistd.h with the prototype for the new eaccess(2) system call.
Obtained from: TrustedBSD Project
Diffstat (limited to 'include')
-rw-r--r-- | include/unistd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h index 0829adf..442314c 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 *, ...)); |