diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-23 01:11:06 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-23 01:11:06 +0000 |
commit | 22cfc7665339352cd6f13795f5b146f84b7b3ef0 (patch) | |
tree | ec262d7e5132b11f977cfabf02a35029809d18d5 /usr.bin/ssh/kex.h | |
parent | 48fb63e6fce1dcfe23055e9ffc23f51255e36f31 (diff) |
#include <signal.h> for sig_atomic_t; need this prior to <sys/param.h>
move
Diffstat (limited to 'usr.bin/ssh/kex.h')
-rw-r--r-- | usr.bin/ssh/kex.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/kex.h b/usr.bin/ssh/kex.h index 137c3d8eb0b..9d43b027fc1 100644 --- a/usr.bin/ssh/kex.h +++ b/usr.bin/ssh/kex.h @@ -1,4 +1,4 @@ -/* $OpenBSD: kex.h,v 1.42 2006/04/20 09:27:09 djm Exp $ */ +/* $OpenBSD: kex.h,v 1.43 2006/07/23 01:11:05 stevesk Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -27,6 +27,9 @@ #define KEX_H #include <openssl/evp.h> + +#include <signal.h> + #include "buffer.h" #include "cipher.h" #include "key.h" |