diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-08-05 04:00:01 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-08-05 04:00:01 +0000 |
commit | 72abc491df3695ff6d6fba802ce860879dfc0dc8 (patch) | |
tree | 0f60266c31f6c92e450ab6788b6209a83d374124 | |
parent | c4e39c66417081533a2c8361aaf49c512f2d8dce (diff) |
pull errno.h in
-rw-r--r-- | usr.bin/mail/popen.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/mail/popen.c b/usr.bin/mail/popen.c index b542ae4d14c..e992c40e979 100644 --- a/usr.bin/mail/popen.c +++ b/usr.bin/mail/popen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: popen.c,v 1.11 1997/08/04 19:25:50 deraadt Exp $ */ +/* $OpenBSD: popen.c,v 1.12 1997/08/05 04:00:00 deraadt Exp $ */ /* $NetBSD: popen.c,v 1.6 1997/05/13 06:48:42 mikel Exp $ */ /* @@ -38,13 +38,14 @@ #if 0 static char sccsid[] = "@(#)popen.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: popen.c,v 1.11 1997/08/04 19:25:50 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: popen.c,v 1.12 1997/08/05 04:00:00 deraadt Exp $"; #endif #endif /* not lint */ #include "rcv.h" #include <sys/wait.h> #include <fcntl.h> +#include <errno.h> #include "extern.h" #define READ 0 |