diff options
author | 2015-10-26 21:57:42 +0000 | |
---|---|---|
committer | 2015-10-26 21:57:42 +0000 | |
commit | 4e21444b3a08b704a30c9b68838f075366a86ac8 (patch) | |
tree | ce67d3db6a121a4acbf65ce71d501711d20cb32a /bin/csh/csh.c | |
parent | document the -p and -l file enquiries and explicitly do not document -s (diff) | |
download | wireguard-openbsd-4e21444b3a08b704a30c9b68838f075366a86ac8.tar.xz wireguard-openbsd-4e21444b3a08b704a30c9b68838f075366a86ac8.zip |
remove the profiling and debugging ifdefs; ok zhuk@
Diffstat (limited to 'bin/csh/csh.c')
-rw-r--r-- | bin/csh/csh.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/bin/csh/csh.c b/bin/csh/csh.c index e6852ed4032..51d873ebf39 100644 --- a/bin/csh/csh.c +++ b/bin/csh/csh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: csh.c,v 1.32 2015/10/26 16:27:04 naddy Exp $ */ +/* $OpenBSD: csh.c,v 1.33 2015/10/26 21:57:42 naddy Exp $ */ /* $NetBSD: csh.c,v 1.14 1995/04/29 23:21:28 mycroft Exp $ */ /*- @@ -819,9 +819,6 @@ void exitstat(void) { Char *s; -#ifdef PROF - monitor(0); -#endif /* * Note that if STATUS is corrupted (i.e. getn bombs) then error will exit * directly because we poke child here. Otherwise we might continue @@ -1257,11 +1254,7 @@ initdesc(void) void -#ifdef PROF -done(int i) -#else xexit(int i) -#endif { untty(); _exit(i); |