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/auth.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/auth.h')
-rw-r--r-- | usr.bin/ssh/auth.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth.h b/usr.bin/ssh/auth.h index 76e4a055b46..e781cd8f32a 100644 --- a/usr.bin/ssh/auth.h +++ b/usr.bin/ssh/auth.h @@ -1,4 +1,4 @@ -/* $OpenBSD: auth.h,v 1.54 2006/07/06 16:03:53 stevesk Exp $ */ +/* $OpenBSD: auth.h,v 1.55 2006/07/23 01:11:05 stevesk Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -33,6 +33,7 @@ #include <openssl/rsa.h> #include <pwd.h> +#include <signal.h> #ifdef HAVE_LOGIN_CAP #include <login_cap.h> |