always use #if LTM_DEMO_TEST_VS_MTEST != 0

This commit is contained in:
Francois Perrad 2018-12-27 09:12:22 +01:00
parent efda3c0e10
commit ea44272d41

View File

@ -36,7 +36,7 @@ static void ndraw(mp_int *a, const char *name)
printf("0x%s\n", buf); printf("0x%s\n", buf);
} }
#if LTM_DEMO_TEST_VS_MTEST #if LTM_DEMO_TEST_VS_MTEST != 0
static void draw(mp_int *a) static void draw(mp_int *a)
{ {
ndraw(a, ""); ndraw(a, "");
@ -157,7 +157,7 @@ int main(void)
{ {
unsigned rr; unsigned rr;
int ix; int ix;
#if LTM_DEMO_TEST_VS_MTEST #if LTM_DEMO_TEST_VS_MTEST != 0
unsigned long expt_n, add_n, sub_n, mul_n, div_n, sqr_n, mul2d_n, div2d_n, unsigned long expt_n, add_n, sub_n, mul_n, div_n, sqr_n, mul2d_n, div2d_n,
gcd_n, lcm_n, inv_n, div2_n, mul2_n, add_d_n, sub_d_n; gcd_n, lcm_n, inv_n, div2_n, mul2_n, add_d_n, sub_d_n;
#else #else