diff options
author | alfred <alfred@FreeBSD.org> | 2001-11-13 09:07:31 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2001-11-13 09:07:31 +0000 |
commit | 5abbadc48337c606c9095c8c0689a4ef9d8122b6 (patch) | |
tree | afe42513b74707aa87098641e79ff0418edd5f26 | |
parent | 491cdadd597b9c5ae026a2155894c4bc2203334f (diff) | |
download | FreeBSD-src-5abbadc48337c606c9095c8c0689a4ef9d8122b6.zip FreeBSD-src-5abbadc48337c606c9095c8c0689a4ef9d8122b6.tar.gz |
NFS split forgot to prototype nfsclnt() syscall, do it.
-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 41a1e07..1569369 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -164,6 +164,7 @@ int mknod __P((const char *, mode_t, dev_t)); int mkstemp __P((char *)); int mkstemps __P((char *, int)); char *mktemp __P((char *)); +int nfsclnt __P((int, void *)); int nfssvc __P((int, void *)); int nice __P((int)); ssize_t pread __P((int, void *, size_t, off_t)); |