diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-25 12:38:07 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-25 12:38:07 +0000 |
commit | 71ec949299cd46e2df5d811187cac54d7dde2e7b (patch) | |
tree | 045591cd74f25607deb7ac1d02fd94b5ccf99c40 /bin/pdksh/c_ksh.c | |
parent | 03abe9b1bcd7af738406e8ca96bd745609d006d5 (diff) |
Fix problems with compiling without KSH defined, add NOEDIT override.
Diffstat (limited to 'bin/pdksh/c_ksh.c')
-rw-r--r-- | bin/pdksh/c_ksh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/pdksh/c_ksh.c b/bin/pdksh/c_ksh.c index ea27c7ddcbe..30832ecb4d3 100644 --- a/bin/pdksh/c_ksh.c +++ b/bin/pdksh/c_ksh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: c_ksh.c,v 1.2 1996/08/19 20:08:45 downsj Exp $ */ +/* $OpenBSD: c_ksh.c,v 1.3 1996/08/25 12:37:55 downsj Exp $ */ /* * built-in Korn commands: c_* @@ -378,8 +378,8 @@ c_print(wp) Xfree(xs, xp); } else { int n, len = Xlength(xs, xp); -#ifdef KSH int UNINITIALIZED(opipe); +#ifdef KSH /* Ensure we aren't killed by a SIGPIPE while writing to * a coprocess. at&t ksh doesn't seem to do this (seems |