From c55fa30be8913f6ccca4d1d09cec26289e7c514d Mon Sep 17 00:00:00 2001 From: elric Date: Sat, 13 May 2000 21:11:45 +0000 Subject: [PATCH] Added includes for waitpid, sys/types.h and sys/wait.h. --- bin/sh/eval.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/sh/eval.c b/bin/sh/eval.c index 4195255c7cd0..89821dbc5342 100644 --- a/bin/sh/eval.c +++ b/bin/sh/eval.c @@ -1,4 +1,4 @@ -/* $NetBSD: eval.c,v 1.52 2000/05/13 20:50:14 elric Exp $ */ +/* $NetBSD: eval.c,v 1.53 2000/05/13 21:11:45 elric Exp $ */ /*- * Copyright (c) 1993 @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)eval.c 8.9 (Berkeley) 6/8/95"; #else -__RCSID("$NetBSD: eval.c,v 1.52 2000/05/13 20:50:14 elric Exp $"); +__RCSID("$NetBSD: eval.c,v 1.53 2000/05/13 21:11:45 elric Exp $"); #endif #endif /* not lint */ @@ -51,6 +51,9 @@ __RCSID("$NetBSD: eval.c,v 1.52 2000/05/13 20:50:14 elric Exp $"); #include #include +#include +#include + /* * Evaluate a command. */