summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dispatch.h2
-rw-r--r--ssh_api.h3
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 @@
27#ifndef DISPATCH_H 27#ifndef DISPATCH_H
28#define DISPATCH_H 28#define DISPATCH_H
29 29
30#include <signal.h> /* for sig_atomic_t */
31
30#define DISPATCH_MAX 255 32#define DISPATCH_MAX 255
31 33
32enum { 34enum {
diff --git a/ssh_api.h b/ssh_api.h
index a7e14e06e..642acd5b2 100644
--- a/ssh_api.h
+++ b/ssh_api.h
@@ -18,10 +18,11 @@
18#ifndef API_H 18#ifndef API_H
19#define API_H 19#define API_H
20 20
21#include <sys/queue.h>
22#include <sys/types.h> 21#include <sys/types.h>
23#include <signal.h> 22#include <signal.h>
24 23
24#include "openbsd-compat/sys-queue.h"
25
25#include "cipher.h" 26#include "cipher.h"
26#include "sshkey.h" 27#include "sshkey.h"
27#include "kex.h" 28#include "kex.h"