diff options
author | Tim Rice <tim@multitalents.net> | 2015-02-23 22:06:56 -0800 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2015-02-23 22:06:56 -0800 |
commit | 910209203d0cd60c5083901cbcc0b7b44d9f48d2 (patch) | |
tree | 2444ebe0b6def3043b4daaf07e4f9634b77e5c77 | |
parent | 676c38d7cbe65b76bbfff796861bb6615cc6a596 (diff) |
cleaner way fix dispatch.h portion of commit
a88dd1da119052870bb2654c1a32c51971eade16
(some systems have sig_atomic_t in signal.h, some in sys/signal.h)
Sounds good to me djm@
-rw-r--r-- | dispatch.h | 2 | ||||
-rw-r--r-- | packet.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/dispatch.h b/dispatch.h index 2bcdc91a5..cd51dbc0b 100644 --- a/dispatch.h +++ b/dispatch.h | |||
@@ -27,8 +27,6 @@ | |||
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 | |||
32 | #define DISPATCH_MAX 255 | 30 | #define DISPATCH_MAX 255 |
33 | 31 | ||
34 | enum { | 32 | enum { |
@@ -34,7 +34,7 @@ | |||
34 | # define EC_POINT void | 34 | # define EC_POINT void |
35 | #endif /* WITH_OPENSSL */ | 35 | #endif /* WITH_OPENSSL */ |
36 | 36 | ||
37 | #include <sys/signal.h> | 37 | #include <signal.h> |
38 | #include "openbsd-compat/sys-queue.h" | 38 | #include "openbsd-compat/sys-queue.h" |
39 | 39 | ||
40 | struct kex; | 40 | struct kex; |