Added includes for waitpid, sys/types.h and sys/wait.h.

This commit is contained in:
elric 2000-05-13 21:11:45 +00:00
parent a0ef2ea948
commit c55fa30be8
1 changed files with 5 additions and 2 deletions

View File

@ -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 * Copyright (c) 1993
@ -41,7 +41,7 @@
#if 0 #if 0
static char sccsid[] = "@(#)eval.c 8.9 (Berkeley) 6/8/95"; static char sccsid[] = "@(#)eval.c 8.9 (Berkeley) 6/8/95";
#else #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
#endif /* not lint */ #endif /* not lint */
@ -51,6 +51,9 @@ __RCSID("$NetBSD: eval.c,v 1.52 2000/05/13 20:50:14 elric Exp $");
#include <signal.h> #include <signal.h>
#include <unistd.h> #include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
/* /*
* Evaluate a command. * Evaluate a command.
*/ */