From 6f5d6505a1f919620267236672c5c9056dd69313 Mon Sep 17 00:00:00 2001 From: Patrick Lu Date: Tue, 9 May 2000 13:14:33 -0500 Subject: [svn-r2232] removed the conditional compile statements that we were going to use for the merged tools lib since these files do not require the tools lib --- tools/h5debug.c | 27 ++------------------------- tools/h5import.c | 15 --------------- tools/h5repart.c | 18 ------------------ 3 files changed, 2 insertions(+), 58 deletions(-) diff --git a/tools/h5debug.c b/tools/h5debug.c index 13826d5..c2364a1 100644 --- a/tools/h5debug.c +++ b/tools/h5debug.c @@ -23,11 +23,10 @@ #include #include #include -#include + /* File drivers */ -#ifdef VERSION13 #include -#endif + #define INDENT 3 #define VCOL 50 @@ -55,30 +54,17 @@ main(int argc, char *argv[]) { hid_t fid, plist=H5P_DEFAULT; H5F_t *f; -#if defined VERSION13 haddr_t addr=0, extra=0; -#elif defined VERSION12 - haddr_t *addr,*extra; -#endif uint8_t sig[16]; intn i, ndims; herr_t status = SUCCEED; -#if defined VERSION12 - addr = malloc(sizeof(haddr_t)); - extra = malloc(sizeof(haddr_t)); - addr->offset = 0; - extra->offset = 0; -#endif - /* * Open the file and get the file descriptor. */ if (strchr (argv[1], '%')) { plist = H5Pcreate (H5P_FILE_ACCESS); -#if defined VERSION13 H5Pset_fapl_family (plist, 0, H5P_DEFAULT); -#endif } if ((fid = H5Fopen(argv[1], H5F_ACC_RDONLY, plist)) < 0) { fprintf(stderr, "cannot open file\n"); @@ -94,24 +80,15 @@ main(int argc, char *argv[]) */ if (argc > 2) { printf("New address: %s\n", argv[2]); -#if defined VERSION13 addr = HDstrtoll(argv[2], NULL, 0); -#elif defined VERSION12 - addr->offset = HDstrtoll(argv[2], NULL, 0); -#endif } if (argc > 3) { -#if defined VERSION13 extra = HDstrtoll(argv[3], NULL, 0); -#elif defined VERSION12 - extra->offset = HDstrtoll(argv[3], NULL, 0); -#endif } /* * Read the signature at the specified file position. */ HDfprintf(stdout, "Reading signature at address %a (rel)\n", addr); - if (H5F_block_read(f, addr, (hsize_t)sizeof(sig), H5P_DEFAULT, sig)<0) { fprintf(stderr, "cannot read signature\n"); HDexit(3); diff --git a/tools/h5import.c b/tools/h5import.c index a54c98f..53fae0b 100644 --- a/tools/h5import.c +++ b/tools/h5import.c @@ -10,36 +10,21 @@ /* See H5private.h for how to include system headers */ #include -#include #ifdef H5_STDC_HEADERS # include # include # include # include -#elif defined STDC_HEADERS -# include -# include -# include -# include #endif #ifdef H5_HAVE_UNISTD_H # include # include -#elif defined HAVE_UNISTD_H -# include -# include #endif -#if defined VERSION12 -#ifdef HAVE_SYS_STAT_H -# include -#endif -#elif defined VERSION13 #ifdef H5_HAVE_SYS_STAT_H # include #endif -#endif diff --git a/tools/h5repart.c b/tools/h5repart.c index 74acb26..6704f38 100644 --- a/tools/h5repart.c +++ b/tools/h5repart.c @@ -14,7 +14,6 @@ /* See H5private.h for how to include system headers */ #include -#include #ifdef H5_STDC_HEADERS # include # include @@ -22,33 +21,16 @@ # include # include # include -#elif defined STDC_HEADERS -# include -# include -# include -# include -# include -# include #endif #ifdef H5_HAVE_UNISTD_H # include # include -#elif defined HAVE_UNISTD_H -# include -# include #endif - -#if defined VERSION12 -#ifdef HAVE_SYS_STAT_H -# include -#endif -#elif defined VERSION13 #ifdef H5_HAVE_SYS_STAT_H # include #endif -#endif #ifndef FALSE #define FALSE 0 -- cgit v0.12