summaryrefslogtreecommitdiffstats
path: root/ssh-xmss.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2023-07-18 07:41:12 +0200
committerDamien Miller <djm@mindrot.org>2023-07-18 07:41:12 +0200
commit750911fd31d307a767cc86e3bfa90bbbb77b1a25 (patch)
tree895aac5d6779f68ac7d82f06d5d6319dd853ff3e /ssh-xmss.c
parentconditionalise match localnetwork on ifaddrs.h (diff)
downloadopenssh-750911fd31d307a767cc86e3bfa90bbbb77b1a25.tar.xz
openssh-750911fd31d307a767cc86e3bfa90bbbb77b1a25.zip
conditionalise stdint.h inclusion on HAVE_STDINT_H
fixes build on AIX5 at least
Diffstat (limited to 'ssh-xmss.c')
-rw-r--r--ssh-xmss.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ssh-xmss.c b/ssh-xmss.c
index b3aec0f72..b6d0561b1 100644
--- a/ssh-xmss.c
+++ b/ssh-xmss.c
@@ -25,7 +25,9 @@
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
-#include <stdint.h>
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#endif
#include <unistd.h>
#include "log.h"