1 /* 	$OpenBSD: tests.c,v 1.2 2023/02/02 12:12:52 djm Exp $ */
2 /*
3  * Placed in the public domain
4  */
5 
6 #include "../test_helper/test_helper.h"
7 
8 void kex_tests(void);
9 void kex_proposal(void);
10 
11 void
12 tests(void)
13 {
14 	kex_tests();
15 	kex_proposal();
16 }
17