diff options
| author | christos <christos@NetBSD.org> | 2014-09-26 19:28:03 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2014-09-26 19:28:03 +0000 |
| commit | 42553733fa2d5953de09767e793863048615c36e (patch) | |
| tree | fe5ab7969302c7482d0eab5faf15dbeaa6fa89be /include | |
| parent | 345b34d3308d22ab2d4f7af4cfe697582650ec58 (diff) | |
add execvpe, execlpe (reviewed by phone)
Diffstat (limited to 'include')
| -rw-r--r-- | include/unistd.h | 4 |
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); |
