[openssh-commits] [openssh] 03/03: Wrap stdint.h inside HAVE_STDINT_H.
git+noreply at mindrot.org
git+noreply at mindrot.org
Tue Jan 14 14:48:56 AEDT 2020
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit 429170f273ce1b0140f8111a45ba69390d98de3a
Author: Darren Tucker <dtucker at dtucker.net>
Date: Tue Jan 14 14:41:47 2020 +1100
Wrap stdint.h inside HAVE_STDINT_H.
---
ssh-sk.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/ssh-sk.c b/ssh-sk.c
index 0ef52e29..3f5eed62 100644
--- a/ssh-sk.c
+++ b/ssh-sk.c
@@ -23,7 +23,9 @@
#include <dlfcn.h>
#include <stddef.h>
-#include <stdint.h>
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#endif
#include <string.h>
#include <stdio.h>
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list