From 28bd09236b08de27d58f6208a041b05d99a4da4c Mon Sep 17 00:00:00 2001 From: Dennis Heimbigner Date: Wed, 28 Mar 2012 16:19:16 +0000 Subject: [PATCH] move single use macro to using program --- cf | 2 +- include/err_macros.h | 13 ------------- nc_test4/tst_knmi.c | 11 +++++++++++ 3 files changed, 12 insertions(+), 14 deletions(-) diff --git a/cf b/cf index 2b4af45ff..48cf1ad62 100644 --- a/cf +++ b/cf @@ -126,7 +126,7 @@ FLAGS="$FLAGS --disable-pnetcdf" #FLAGS="$FLAGS --enable-ffio" #FLAGS="$FLAGS --enable-benchmarks" #FLAGS="$FLAGS --enable-extra-tests" -#FLAGS="$FLAGS --enable-large-file-tests" +FLAGS="$FLAGS --enable-large-file-tests" FLAGS="$FLAGS --enable-logging" FLAGS="$FLAGS --disable-shared" diff --git a/include/err_macros.h b/include/err_macros.h index 202ba6721..c087f1c02 100644 --- a/include/err_macros.h +++ b/include/err_macros.h @@ -78,17 +78,4 @@ return 2; \ return 0; \ } while (0) -#ifndef NONETCDF -extern const char* nc_strerror(int ncerr); -static int -complain(int stat) -{ - if(stat) { - fprintf(stderr,"%s\n",nc_strerror(stat)); - fflush(stderr); - } - return stat; -} -#endif - #endif /* _ERR_MACROS_H */ diff --git a/nc_test4/tst_knmi.c b/nc_test4/tst_knmi.c index e6f2e20c8..3a6d7744b 100644 --- a/nc_test4/tst_knmi.c +++ b/nc_test4/tst_knmi.c @@ -27,6 +27,17 @@ redistribution conditions. #define TIME_LEN 1560 #define NUM_TS 1 +extern const char* nc_strerror(int ncerr); +static int +complain(int stat) +{ + if(stat) { + fprintf(stderr,"%s\n",nc_strerror(stat)); + fflush(stderr); + } + return stat; +} + static int read_file(char *filename) {