summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2014-09-26 19:28:03 +0000
committerchristos <christos@NetBSD.org>2014-09-26 19:28:03 +0000
commit42553733fa2d5953de09767e793863048615c36e (patch)
treefe5ab7969302c7482d0eab5faf15dbeaa6fa89be /include
parent345b34d3308d22ab2d4f7af4cfe697582650ec58 (diff)
add execvpe, execlpe (reviewed by phone)
Diffstat (limited to 'include')
-rw-r--r--include/unistd.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/unistd.h b/include/unistd.h
index 764cb7e5f53..d72ee2418d0 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -1,4 +1,4 @@
-/* $NetBSD: unistd.h,v 1.142 2014/07/25 08:30:47 dholland Exp $ */
+/* $NetBSD: unistd.h,v 1.143 2014/09/26 19:28:03 christos Exp $ */
/*-
* Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc.
@@ -328,6 +328,8 @@ int des_setkey(const char *);
int dup3(int, int, int);
void endusershell(void);
int exect(const char *, char * const *, char * const *);
+int execvpe(const char *, char * const *, char * const *);
+int execlpe(const char *, const char *, ...);
int fchroot(int);
int fdiscard(int, off_t, off_t);
int fsync_range(int, int, off_t, off_t);