diff options
Diffstat (limited to 'test/dsets.c')
-rw-r--r-- | test/dsets.c | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/test/dsets.c b/test/dsets.c index a929842..4640d03 100644 --- a/test/dsets.c +++ b/test/dsets.c @@ -7,16 +7,26 @@ * * Purpose: Tests the dataset interface (H5D) */ -#include <assert.h> -#include <hdf5.h> -#include <math.h> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#if !defined(WIN32) -#include <unistd.h> -#endif + +/* See H5private.h for how to include files */ +#undef NDEBUG #include <H5config.h> + +#ifdef STDC_HEADERS +# include <assert.h> +# include <math.h> +# include <stdio.h> +# include <stdlib.h> +# include <string.h> +#endif + +#ifdef HAVE_UNISTD_H +# include <sys/types.h> +# include <unistd.h> +#endif + +#include <hdf5.h> + #ifndef HAVE_ATTRIBUTE # undef __attribute__ # define __attribute__(X) /*void*/ @@ -24,10 +34,6 @@ #else # define __unused__ __attribute__((unused)) #endif -#if defined(WIN32) -#undef __unused__ -#define __unused__ -#endif #ifndef HAVE_FUNCTION # undef __FUNCTION__ |