Module Name: src
Committed By: dholland
Date: Sat Jan 12 17:17:26 UTC 2013
Modified Files:
src/include: unistd.h
Log Message:
Remove #if defined(_KERNEL) around a userlevel function.
To generate a diff of this commit:
cvs rdiff -u -r1.137 -r1.138 src/include/unistd.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/include/unistd.h
diff -u src/include/unistd.h:1.137 src/include/unistd.h:1.138
--- src/include/unistd.h:1.137 Sat Dec 1 13:28:18 2012
+++ src/include/unistd.h Sat Jan 12 17:17:26 2013
@@ -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 *
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