diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2024-10-27 02:07:00 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2024-10-27 02:07:00 +0000 |
commit | 8413ec20c049d808488a6008873029e661b29166 (patch) | |
tree | f32e1cf6c16b2b046872b7f80d5f99cfa97df490 /usr.bin | |
parent | b882e2d6b9f7cf9b2c7f04e02208f6b3f2f3389a (diff) |
explicitly include endian.h
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/kexmlkem768x25519.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/kexmlkem768x25519.c b/usr.bin/ssh/kexmlkem768x25519.c index 26563e234a6..098a4931663 100644 --- a/usr.bin/ssh/kexmlkem768x25519.c +++ b/usr.bin/ssh/kexmlkem768x25519.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kexmlkem768x25519.c,v 1.1 2024/09/02 12:13:56 djm Exp $ */ +/* $OpenBSD: kexmlkem768x25519.c,v 1.2 2024/10/27 02:06:59 djm Exp $ */ /* * Copyright (c) 2023 Markus Friedl. All rights reserved. * @@ -30,6 +30,7 @@ #include <stdbool.h> #include <string.h> #include <signal.h> +#include <endian.h> #include "sshkey.h" #include "kex.h" |