diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-19 20:09:10 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-19 20:09:10 +0000 |
commit | e7e852656e3beb5f62f8c146ba24004cfda2cf88 (patch) | |
tree | b312bc3e985b3f1cf19691c779e7870219573b6e /bin/pdksh/mail.c | |
parent | 1e9e82f84b5de8bcd110c41c780f476397c385d9 (diff) |
update to pdksh-5.2.8
Diffstat (limited to 'bin/pdksh/mail.c')
-rw-r--r-- | bin/pdksh/mail.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/pdksh/mail.c b/bin/pdksh/mail.c index 3422a5873cc..a26bde87579 100644 --- a/bin/pdksh/mail.c +++ b/bin/pdksh/mail.c @@ -1,10 +1,13 @@ -/* $OpenBSD: mail.c,v 1.1 1996/08/14 06:19:11 downsj Exp $ */ +/* $OpenBSD: mail.c,v 1.2 1996/08/19 20:08:55 downsj Exp $ */ /* * Mailbox checking code by Robert J. Gibson, adapted for PD ksh by * John R. MacMillan */ +#include "config.h" + +#ifdef KSH #include "sh.h" #include "ksh_stat.h" #include "ksh_time.h" @@ -183,3 +186,4 @@ mbox_t *mbp; unset(vp, 0); } +#endif /* KSH */ |