diff options
author | Damien Miller <djm@mindrot.org> | 2019-10-09 00:06:35 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-10-09 00:06:35 +0200 |
commit | cfc1897a2002ec6c4dc879b24e8b3153c87ea2cf (patch) | |
tree | ebeec2716f65dbb23cf0db174b2b82833c0b8fc2 /ssh-keygen.c | |
parent | avoid "return (value)" in void-declared function (diff) | |
download | openssh-cfc1897a2002ec6c4dc879b24e8b3153c87ea2cf.tar.xz openssh-cfc1897a2002ec6c4dc879b24e8b3153c87ea2cf.zip |
wrap stdint.h include in HAVE_STDINT_H
make the indenting a little more consistent too..
Fixes Solaris 2.6; reported by Tom G. Christensen
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r-- | ssh-keygen.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c index 85fb4424f..8c829cad6 100644 --- a/ssh-keygen.c +++ b/ssh-keygen.c @@ -24,7 +24,9 @@ #include "openbsd-compat/openssl-compat.h" #endif -#include <stdint.h> +#ifdef HAVE_STDINT_H +# include <stdint.h> +#endif #include <errno.h> #include <fcntl.h> #include <netdb.h> |