From 8bf0905d416cf186695f0ef88ebd5b2960f0896a Mon Sep 17 00:00:00 2001 From: dtucker Date: Tue, 16 Jun 2026 08:15:35 +0000 Subject: [PATCH] Include stdlib.h for malloc/free and sort headers. --- regress/usr.bin/ssh/unittests/crypto/tests.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/regress/usr.bin/ssh/unittests/crypto/tests.c b/regress/usr.bin/ssh/unittests/crypto/tests.c index 53a44fb0e8c..1689097b4be 100644 --- a/regress/usr.bin/ssh/unittests/crypto/tests.c +++ b/regress/usr.bin/ssh/unittests/crypto/tests.c @@ -1,12 +1,13 @@ -/* $OpenBSD: tests.c,v 1.1 2026/06/14 04:08:06 djm Exp $ */ +/* $OpenBSD: tests.c,v 1.2 2026/06/16 08:15:35 dtucker Exp $ */ /* * Regress test for crypto ergonomic API * * Placed in the public domain */ -#include #include +#include +#include #include "../test_helper/test_helper.h" #include "sshbuf.h"