From fb37e3accf922e8d3e0ea5e5880851a3f3718b1c Mon Sep 17 00:00:00 2001 From: dtucker Date: Tue, 16 Jun 2026 09:00:47 +0000 Subject: [PATCH] Include stdarg.h for va_list (needed for xmalloc.h). --- regress/usr.bin/ssh/unittests/crypto/test_ed25519.c | 3 ++- regress/usr.bin/ssh/unittests/crypto/test_mldsa.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/regress/usr.bin/ssh/unittests/crypto/test_ed25519.c b/regress/usr.bin/ssh/unittests/crypto/test_ed25519.c index 5c554ace553..66faa4bcaae 100644 --- a/regress/usr.bin/ssh/unittests/crypto/test_ed25519.c +++ b/regress/usr.bin/ssh/unittests/crypto/test_ed25519.c @@ -1,4 +1,4 @@ -/* $OpenBSD: test_ed25519.c,v 1.1 2026/06/14 04:08:05 djm Exp $ */ +/* $OpenBSD: test_ed25519.c,v 1.2 2026/06/16 09:00:47 dtucker Exp $ */ /* * Regress test for Ed25519 keypair from seed * @@ -6,6 +6,7 @@ */ #include +#include #include #include #include diff --git a/regress/usr.bin/ssh/unittests/crypto/test_mldsa.c b/regress/usr.bin/ssh/unittests/crypto/test_mldsa.c index c9c796d799b..3cb12099074 100644 --- a/regress/usr.bin/ssh/unittests/crypto/test_mldsa.c +++ b/regress/usr.bin/ssh/unittests/crypto/test_mldsa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: test_mldsa.c,v 1.1 2026/06/14 04:08:06 djm Exp $ */ +/* $OpenBSD: test_mldsa.c,v 1.2 2026/06/16 09:00:47 dtucker Exp $ */ /* * Regress test for ML-DSA * @@ -6,6 +6,7 @@ */ #include +#include #include #include #include