summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/dispatch.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@cvs.openbsd.org>2006-07-23 01:11:06 +0000
committerKevin Steves <stevesk@cvs.openbsd.org>2006-07-23 01:11:06 +0000
commit22cfc7665339352cd6f13795f5b146f84b7b3ef0 (patch)
treeec262d7e5132b11f977cfabf02a35029809d18d5 /usr.bin/ssh/dispatch.c
parent48fb63e6fce1dcfe23055e9ffc23f51255e36f31 (diff)
#include <signal.h> for sig_atomic_t; need this prior to <sys/param.h>
move
Diffstat (limited to 'usr.bin/ssh/dispatch.c')
-rw-r--r--usr.bin/ssh/dispatch.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/dispatch.c b/usr.bin/ssh/dispatch.c
index 4f965a62d57..c1d98a78e69 100644
--- a/usr.bin/ssh/dispatch.c
+++ b/usr.bin/ssh/dispatch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dispatch.c,v 1.19 2006/04/20 09:27:09 djm Exp $ */
+/* $OpenBSD: dispatch.c,v 1.20 2006/07/23 01:11:05 stevesk Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@@ -24,6 +24,8 @@
*/
#include "includes.h"
+#include <signal.h>
+
#include "ssh1.h"
#include "ssh2.h"
#include "log.h"