diff options
Diffstat (limited to 'xtract/xtract_macros.h')
-rw-r--r-- | xtract/xtract_macros.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/xtract/xtract_macros.h b/xtract/xtract_macros.h index 534e1af..3ee97b2 100644 --- a/xtract/xtract_macros.h +++ b/xtract/xtract_macros.h @@ -34,7 +34,6 @@ extern "C" { #define SQ(a) ((a) * (a)) #define MIN(a, b) ((a) < (b) ? (a) : (b)) #define MAX(a, b) ((a) > (b) ? (a) : (b)) -#define NOT_IMPLEMENTED printf("Feature not implemented yet.\n") #define NEEDS_FFTW printf("LibXtract must be compiled with fftw support to use this function.\n") #ifdef __cplusplus |