summaryrefslogtreecommitdiff
path: root/monitor.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:29:24 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:29:24 +1100
commit9cf6d077fb87b4364e70c9fd889bf26744718301 (patch)
tree723b1647b10a98e1289922ac1a1eef66d51339c6 /monitor.c
parent17e91c0fb01787f9a5974a997bb26114a435dde7 (diff)
- stevesk@cvs.openbsd.org 2006/02/10 01:44:27
[includes.h monitor.c readpass.c scp.c serverloop.c session.c^?] [sftp.c sshconnect.c sshconnect2.c sshd.c] move #include <sys/wait.h> out of includes.h; ok markus@
Diffstat (limited to 'monitor.c')
-rw-r--r--monitor.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/monitor.c b/monitor.c
index 4ba78db9c..c21c0fab8 100644
--- a/monitor.c
+++ b/monitor.c
@@ -25,7 +25,10 @@
25 */ 25 */
26 26
27#include "includes.h" 27#include "includes.h"
28RCSID("$OpenBSD: monitor.c,v 1.66 2006/02/08 13:15:44 stevesk Exp $"); 28RCSID("$OpenBSD: monitor.c,v 1.67 2006/02/10 01:44:26 stevesk Exp $");
29
30#include <sys/types.h>
31#include <sys/wait.h>
29 32
30#include <paths.h> 33#include <paths.h>
31 34