summaryrefslogtreecommitdiff
path: root/ssh-sk.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2020-01-14 14:41:47 +1100
committerDarren Tucker <dtucker@dtucker.net>2020-01-14 14:41:47 +1100
commit429170f273ce1b0140f8111a45ba69390d98de3a (patch)
tree2b615efdbcf99e5bfec7aa112b70c77826d326da /ssh-sk.c
parenta0989b60211b6f1c2313e1397c526d883a23a075 (diff)
Wrap stdint.h inside HAVE_STDINT_H.
Diffstat (limited to 'ssh-sk.c')
-rw-r--r--ssh-sk.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ssh-sk.c b/ssh-sk.c
index 0ef52e299..3f5eed62d 100644
--- a/ssh-sk.c
+++ b/ssh-sk.c
@@ -23,7 +23,9 @@
23 23
24#include <dlfcn.h> 24#include <dlfcn.h>
25#include <stddef.h> 25#include <stddef.h>
26#include <stdint.h> 26#ifdef HAVE_STDINT_H
27# include <stdint.h>
28#endif
27#include <string.h> 29#include <string.h>
28#include <stdio.h> 30#include <stdio.h>
29 31