]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - crypto/openssh/regress/unittests/hostkeys/tests.c
MFH (r265214, r294333, r294407, r294467): misc prop fixes
[FreeBSD/stable/10.git] / crypto / openssh / regress / unittests / hostkeys / tests.c
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