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