From b692d3b5b9470551da36768ac47f8aa6805be84b Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 22 Apr 2020 19:39:47 -0700 Subject: mpi: remove dubious MP_DEBUG cruft. The MP_DEBUG macro controls the visibility of definitions that are not used anywhere. * mpi/mpi-config.h (MP_DEBUG): Removed. * mpi/mpi.c (DIAG): Macro and surrounding section controlled by #if MP_DEBUG removed. * mpi/mpi.h (MP_IOFUNC): Definition controlled by MP_DEBUG removed. --- mpi/mpi.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'mpi/mpi.c') diff --git a/mpi/mpi.c b/mpi/mpi.c index e5d76f93..355a8d1f 100644 --- a/mpi/mpi.c +++ b/mpi/mpi.c @@ -35,14 +35,6 @@ typedef unsigned char mem_t; extern mem_t *chk_calloc(size_t n, size_t size); -#if MP_DEBUG -#include - -#define DIAG(T,V) {fprintf(stderr,T);mp_print(V,stderr);fputc('\n',stderr);} -#else -#define DIAG(T,V) -#endif - #include "logtab.h" /* Default precision for newly created mp_int's */ -- cgit v1.2.3