diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-08-13 08:26:58 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-08-13 08:26:58 +0000 |
commit | 00771217a6e0ac59856b0030842a19127a1b2f98 (patch) | |
tree | b0271d3351ead761efbcef17bb3fb82c33d86acc | |
parent | 75938a729368b104d10b7917df85cb11cc8a07cc (diff) | |
download | FreeBSD-src-00771217a6e0ac59856b0030842a19127a1b2f98.zip FreeBSD-src-00771217a6e0ac59856b0030842a19127a1b2f98.tar.gz |
Include missing headers.
-rw-r--r-- | bin/sh/mail.c | 1 | ||||
-rw-r--r-- | bin/sh/parser.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/bin/sh/mail.c b/bin/sh/mail.c index 3056fad..fe03a73 100644 --- a/bin/sh/mail.c +++ b/bin/sh/mail.c @@ -44,6 +44,7 @@ __FBSDID("$FreeBSD$"); #include "shell.h" #include "exec.h" /* defines padvance() */ +#include "mail.h" #include "var.h" #include "output.h" #include "memalloc.h" diff --git a/bin/sh/parser.c b/bin/sh/parser.c index 806259d..41d8513 100644 --- a/bin/sh/parser.c +++ b/bin/sh/parser.c @@ -39,6 +39,7 @@ static char sccsid[] = "@(#)parser.c 8.7 (Berkeley) 5/16/95"; __FBSDID("$FreeBSD$"); #include <stdlib.h> +#include <unistd.h> #include "shell.h" #include "parser.h" |