diff options
author | Darren Tucker <dtucker@dtucker.net> | 2020-01-14 04:41:47 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2020-01-14 04:41:47 +0100 |
commit | 429170f273ce1b0140f8111a45ba69390d98de3a (patch) | |
tree | 2b615efdbcf99e5bfec7aa112b70c77826d326da /ssh-sk.c | |
parent | Include compat header for definitions. (diff) | |
download | openssh-429170f273ce1b0140f8111a45ba69390d98de3a.tar.xz openssh-429170f273ce1b0140f8111a45ba69390d98de3a.zip |
Wrap stdint.h inside HAVE_STDINT_H.
Diffstat (limited to '')
-rw-r--r-- | ssh-sk.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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> |