Module Name: src Committed By: christos Date: Sun Sep 15 23:41:41 UTC 2019
Modified Files: src/include: unistd.h Log Message: one fexecve declaration should be enough. To generate a diff of this commit: cvs rdiff -u -r1.153 -r1.154 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.153 src/include/unistd.h:1.154 --- src/include/unistd.h:1.153 Sun Sep 15 19:41:00 2019 +++ src/include/unistd.h Sun Sep 15 19:41:41 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: unistd.h,v 1.153 2019/09/15 23:41:00 christos Exp $ */ +/* $NetBSD: unistd.h,v 1.154 2019/09/15 23:41:41 christos Exp $ */ /*- * Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc. @@ -107,7 +107,6 @@ 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);