summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2016-06-30 15:29:20 +0000
committerdholland <dholland@NetBSD.org>2016-06-30 15:29:20 +0000
commit4e78ff88d263a31073d280127f708b78e8410ea3 (patch)
treed36e55849805b73e89902c6cf6fa5536a74c23bf /include
parent072b83b865bbc187c3889089a95b5c32548a851d (diff)
PR 51287 Ralf Nolden: posix_fallocate belongs in <fcntl.h>
Diffstat (limited to 'include')
-rw-r--r--include/unistd.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/unistd.h b/include/unistd.h
index e7697187803..707a81b9026 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -1,4 +1,4 @@
-/* $NetBSD: unistd.h,v 1.146 2016/06/18 14:39:15 kamil Exp $ */
+/* $NetBSD: unistd.h,v 1.147 2016/06/30 15:29:20 dholland Exp $ */
/*-
* Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc.
@@ -173,7 +173,6 @@ ssize_t readlink(const char * __restrict, char * __restrict, size_t);
*/
#if (_POSIX_C_SOURCE - 0) >= 200112L || (_XOPEN_SOURCE - 0) >= 600 || \
defined(_NETBSD_SOURCE)
-int posix_fallocate(int, off_t, off_t);
int setegid(gid_t);
int seteuid(uid_t);
#endif