diff options
author | Darren Tucker <dtucker@dtucker.net> | 2024-09-10 10:45:55 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2024-09-10 10:45:55 +0200 |
commit | f4ff91575a448b19176ceaa8fd6843a25f39d572 (patch) | |
tree | f45ae21255b161920e97f2ccea5f2a5bc062217c | |
parent | Also test PAM on dfly64. (diff) | |
download | openssh-f4ff91575a448b19176ceaa8fd6843a25f39d572.tar.xz openssh-f4ff91575a448b19176ceaa8fd6843a25f39d572.zip |
Wrap stdint.h in ifdef.
-rw-r--r-- | kexmlkem768x25519.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kexmlkem768x25519.c b/kexmlkem768x25519.c index 18730ff8a..679446e97 100644 --- a/kexmlkem768x25519.c +++ b/kexmlkem768x25519.c @@ -28,7 +28,9 @@ #include <sys/types.h> #include <stdio.h> +#ifdef HAVE_STDINT_H #include <stdint.h> +#endif #include <stdbool.h> #include <string.h> #include <signal.h> |