diff options
author | Damien Miller <djm@mindrot.org> | 2019-10-09 09:06:35 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-10-09 09:06:35 +1100 |
commit | cfc1897a2002ec6c4dc879b24e8b3153c87ea2cf (patch) | |
tree | ebeec2716f65dbb23cf0db174b2b82833c0b8fc2 /sshbuf-getput-basic.c | |
parent | 13b3369830a43b89a503915216a23816d1b25744 (diff) |
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 'sshbuf-getput-basic.c')
-rw-r--r-- | sshbuf-getput-basic.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sshbuf-getput-basic.c b/sshbuf-getput-basic.c index ffa20a02c..d401a7265 100644 --- a/sshbuf-getput-basic.c +++ b/sshbuf-getput-basic.c | |||
@@ -24,7 +24,9 @@ | |||
24 | #include <stdlib.h> | 24 | #include <stdlib.h> |
25 | #include <stdio.h> | 25 | #include <stdio.h> |
26 | #include <string.h> | 26 | #include <string.h> |
27 | #include <stdint.h> | 27 | #ifdef HAVE_STDINT_H |
28 | # include <stdint.h> | ||
29 | #endif | ||
28 | 30 | ||
29 | #include "ssherr.h" | 31 | #include "ssherr.h" |
30 | #include "sshbuf.h" | 32 | #include "sshbuf.h" |