diff --git a/programs/fuzz/common.c b/programs/fuzz/common.c index 1af2446db..c6d49765e 100644 --- a/programs/fuzz/common.c +++ b/programs/fuzz/common.c @@ -15,7 +15,7 @@ mbedtls_time_t dummy_constant_time( mbedtls_time_t* time ) void dummy_init() { -#if (defined(MBEDTLS_HAVE_TIME) && defined(MBEDTLS_PLATFORM_TIME_ALT)) +#if defined(MBEDTLS_PLATFORM_TIME_ALT) mbedtls_platform_set_time( dummy_constant_time ); #else fprintf(stderr, "Warning: fuzzing without constant time\n");