svn commit: r194187 - head/usr.sbin/dconschat

Ed Schouten ed at FreeBSD.org
Sun Jun 14 12:44:10 UTC 2009


Author: ed
Date: Sun Jun 14 12:44:09 2009
New Revision: 194187
URL: http://svn.freebsd.org/changeset/base/194187

Log:
  Include <sys/wait.h> and <signal.h> for wait() and kill().

Modified:
  head/usr.sbin/dconschat/dconschat.c

Modified: head/usr.sbin/dconschat/dconschat.c
==============================================================================
--- head/usr.sbin/dconschat/dconschat.c	Sun Jun 14 12:42:06 2009	(r194186)
+++ head/usr.sbin/dconschat/dconschat.c	Sun Jun 14 12:44:09 2009	(r194187)
@@ -38,8 +38,10 @@
 #include <sys/param.h>
 #include <sys/types.h>
 #include <sys/uio.h>
+#include <sys/wait.h>
 #include <unistd.h>
 #include <fcntl.h>
+#include <signal.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <termios.h>


More information about the svn-src-all mailing list