diff options
| author | christos <christos@NetBSD.org> | 2015-01-20 17:29:00 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2015-01-20 17:29:00 +0000 |
| commit | 58beee1939f8d701fa5ca799ee8410363d7104d9 (patch) | |
| tree | f78e740ea9d4c871ee8d9464212b93fde4e058dc /include | |
| parent | a4a42681750e77caa4292bac5093f2ee24309303 (diff) | |
add popenve().
Diffstat (limited to 'include')
| -rw-r--r-- | include/stdio.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/stdio.h b/include/stdio.h index ce091e0c64b..91c2727c69f 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -1,4 +1,4 @@ -/* $NetBSD: stdio.h,v 1.92 2014/10/13 00:47:03 christos Exp $ */ +/* $NetBSD: stdio.h,v 1.93 2015/01/20 17:29:00 christos Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -330,6 +330,9 @@ int pclose(FILE *); FILE *popen(const char *, const char *); __END_DECLS #endif +#ifdef _NETBSD_SOURCE +FILE *popenve(const char *, char *const *, char *const *, const char *); +#endif /* * Functions defined in ISO XPG4.2, ISO C99, POSIX 1003.1-2001 or later. |
