blob: 691f3e2ec8f06a624de3fcf687b583962f2de01f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $OpenBSD: tests.c,v 1.1 2017/05/29 20:59:28 markus Exp $ */
/*
* Regress test for iked payload parser
*
* Placed in the public domain
*/
#include "test_helper.h"
void parser_fuzz_tests(void);
void
tests(void)
{
parser_fuzz_tests();
}
|