My freshly aborted 'make world' has pointed out that the wait.h include

file is <sys/wait.h>, not <wait.h> as was recently committed.
This commit is contained in:
Peter Wemm 1996-01-11 05:58:59 +00:00
parent 609ce96228
commit 37d89975ab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=13385

View File

@ -17,13 +17,13 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: command.c,v 1.10 1995/10/08 14:57:27 amurai Exp $
* $Id: command.c,v 1.11 1996/01/10 21:27:40 phk Exp $
*
*/
#include <sys/types.h>
#include <ctype.h>
#include <termios.h>
#include <wait.h>
#include <sys/wait.h>
#include <time.h>
#include "fsm.h"
#include "phase.h"