diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-08-22 20:37:00 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-08-22 20:37:00 +0000 |
commit | 0d69a771a0096d6f26983c5b06c5025d51239f18 (patch) | |
tree | 11c5679492129d8e0bbdc0e8f14a0f862a4360ab /include | |
parent | 92c01dd3234ebed386e6bec16b670a3af88bdb13 (diff) |
Adds rcmdsh() prototype.
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 ecb84e849ff..ffa976735bb 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: unistd.h,v 1.6 1996/06/10 06:31:34 deraadt Exp $ */ +/* $OpenBSD: unistd.h,v 1.7 1996/08/22 20:36:59 millert Exp $ */ /* $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $ */ /*- @@ -139,6 +139,8 @@ extern __const char *__const sys_siglist[]; int profil __P((char *, size_t, u_long, u_int)); int rcmd __P((char **, int, const char *, const char *, const char *, int *)); +int rcmdsh __P((char **, int, const char *, + const char *, const char *, char *)); char *re_comp __P((const char *)); int re_exec __P((const char *)); int readlink __P((const char *, char *, int)); |