aboutsummaryrefslogtreecommitdiffstats
path: root/md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'md5.c')
-rw-r--r--md5.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/md5.c b/md5.c
index 2ff159d..a56ecfc 100644
--- a/md5.c
+++ b/md5.c
@@ -1,6 +1,7 @@
/* See LICENSE file for copyright and license details. */
-#define TEST
-#include "common.h"
+#ifdef SUPPORT_MD5
+# define TEST
+# include "common.h"
static struct testcase testcases[] = {
@@ -109,6 +110,12 @@ static struct testcase testcases[] = {
};
+#else
+# define TEST_UNSUPPORTED
+# include "common.h"
+#endif
+
+
int
main(void)
{