diff options
author | Damien Miller <djm@mindrot.org> | 2015-02-23 20:30:29 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-02-23 20:30:29 +0100 |
commit | a88dd1da119052870bb2654c1a32c51971eade16 (patch) | |
tree | 75760e8bb8daecaddf6646ddceb2c52c840859ef | |
parent | upstream commit (diff) | |
download | openssh-a88dd1da119052870bb2654c1a32c51971eade16.tar.xz openssh-a88dd1da119052870bb2654c1a32c51971eade16.zip |
various include fixes for portable
-rw-r--r-- | dispatch.h | 2 | ||||
-rw-r--r-- | ssh_api.h | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/dispatch.h b/dispatch.h index cd51dbc0b..2bcdc91a5 100644 --- a/dispatch.h +++ b/dispatch.h @@ -27,6 +27,8 @@ #ifndef DISPATCH_H #define DISPATCH_H +#include <signal.h> /* for sig_atomic_t */ + #define DISPATCH_MAX 255 enum { @@ -18,10 +18,11 @@ #ifndef API_H #define API_H -#include <sys/queue.h> #include <sys/types.h> #include <signal.h> +#include "openbsd-compat/sys-queue.h" + #include "cipher.h" #include "sshkey.h" #include "kex.h" |