diff options
Diffstat (limited to 'md4.c')
-rw-r--r-- | md4.c | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,6 +1,7 @@ /* See LICENSE file for copyright and license details. */ -#define TEST -#include "common.h" +#ifdef SUPPORT_MD4 +# define TEST +# include "common.h" static struct testcase testcases[] = { @@ -18,6 +19,12 @@ static struct testcase testcases[] = { }; +#else +# define TEST_UNSUPPORTED +# include "common.h" +#endif + + int main(void) { |