Declare fexecve

This commit is contained in:
christos 2019-09-15 22:32:48 +00:00
parent c296e4670d
commit cedcb5f35f
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: unistd.h,v 1.151 2018/11/18 19:22:23 christos Exp $ */
/* $NetBSD: unistd.h,v 1.152 2019/09/15 22:32:48 christos Exp $ */
/*-
* Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc.
@ -107,6 +107,7 @@ int execle(const char *, const char *, ...);
int execlp(const char *, const char *, ...);
int execv(const char *, char * const *);
int execve(const char *, char * const *, char * const *);
int fexecve(int, char * const *, char * const *);
int execvp(const char *, char * const *);
pid_t fork(void);
long fpathconf(int, int);