diff options
Diffstat (limited to '')
-rw-r--r-- | ripemd-320.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/ripemd-320.c b/ripemd-320.c index ea39bc6..6d9b954 100644 --- a/ripemd-320.c +++ b/ripemd-320.c @@ -1,6 +1,7 @@ /* See LICENSE file for copyright and license details. */ -#define TEST -#include "common.h" +#ifdef SUPPORT_RIPEMD_320 +# define TEST +# include "common.h" static struct testcase testcases[] = { @@ -25,6 +26,12 @@ static struct testcase testcases[] = { }; +#else +# define TEST_UNSUPPORTED +# include "common.h" +#endif + + int main(void) { |