summaryrefslogtreecommitdiffstats
path: root/regress/unittests/kex/tests.c
blob: 2a83dafbc3ae7515c85f2a507ef37ef325ebc894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 	$OpenBSD: tests.c,v 1.2 2023/02/02 12:12:52 djm Exp $ */
/*
 * Placed in the public domain
 */

#include "../test_helper/test_helper.h"

void kex_tests(void);
void kex_proposal(void);

void
tests(void)
{
	kex_tests();
	kex_proposal();
}