1 /* 	$OpenBSD: tests.c,v 1.1 2015/02/16 22:18:34 djm Exp $ */
2 /*
3  * Regress test for known_hosts-related API.
4  *
5  * Placed in the public domain
6  */
7 
8 void tests(void);
9 void test_iterate(void); /* test_iterate.c */
10 
11 void
12 tests(void)
13 {
14 	test_iterate();
15 }
16 
17