diff options
author | keramida <keramida@FreeBSD.org> | 2002-08-29 14:26:49 +0000 |
---|---|---|
committer | keramida <keramida@FreeBSD.org> | 2002-08-29 14:26:49 +0000 |
commit | 0eae474cc23cbde9dc1b97e238d1c8c70a1c927a (patch) | |
tree | ec345576920af1cbb5c644b79422f965b8cda406 /bin | |
parent | 7c0d43f555b81a9bbc6a9930ff3516476ecd3edd (diff) | |
download | FreeBSD-src-0eae474cc23cbde9dc1b97e238d1c8c70a1c927a.zip FreeBSD-src-0eae474cc23cbde9dc1b97e238d1c8c70a1c927a.tar.gz |
Add <stdlib.h> to get a prototype for exit().
Reviewed by: tjr
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sh/eval.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/sh/eval.c b/bin/sh/eval.c index e147e43..9f9844c 100644 --- a/bin/sh/eval.c +++ b/bin/sh/eval.c @@ -44,6 +44,7 @@ __FBSDID("$FreeBSD$"); #include <paths.h> #include <signal.h> +#include <stdlib.h> #include <unistd.h> #include <sys/wait.h> /* For WIFSIGNALED(status) */ #include <errno.h> |