summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2013-01-12 17:17:26 +0000
committerdholland <dholland@NetBSD.org>2013-01-12 17:17:26 +0000
commit3e3fbba241e93fbec528f7f36710fc0fd8b9e3e9 (patch)
treefaba31f52c6a899bf6e3eac188fcb6b79bdfbec9 /include
parentb6008dc70516a17c20582678188efd38cbe7d271 (diff)
Remove #if defined(_KERNEL) around a userlevel function.
Diffstat (limited to 'include')
-rw-r--r--include/unistd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unistd.h b/include/unistd.h
index 94d58d44810..6848605b184 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -1,4 +1,4 @@
-/* $NetBSD: unistd.h,v 1.137 2012/12/01 13:28:18 skrll Exp $ */
+/* $NetBSD: unistd.h,v 1.138 2013/01/12 17:17:26 dholland Exp $ */
/*-
* Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc.
@@ -308,7 +308,7 @@ int readlinkat(int, const char *, char *, size_t);
int symlinkat(const char *, int, const char *);
int unlinkat(int, const char *, int);
#endif
-#if defined(_INCOMPLETE_XOPEN_C063) || defined(_KERNEL)
+#if defined(_INCOMPLETE_XOPEN_C063)
int fexecve(int, char * const *, char * const *);
#endif