diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-05 17:09:42 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-05 17:09:42 (GMT) |
commit | e8ee45fa53d0f29b05bdbbd991be4797d75b4ee7 (patch) | |
tree | 801ea6f72a8bc8955562f32e00c948dcc9e9005f | |
parent | d8bf299873de7e121e18c98119f76eef77387918 (diff) | |
download | hdf5-e8ee45fa53d0f29b05bdbbd991be4797d75b4ee7.zip hdf5-e8ee45fa53d0f29b05bdbbd991be4797d75b4ee7.tar.gz hdf5-e8ee45fa53d0f29b05bdbbd991be4797d75b4ee7.tar.bz2 |
[svn-r3780] Purpose:
Update
Description:
Changed
#include <hdf5_file.h>
to
#include "hdf5_file.h"
to be consistent with the new way of generating dependencies.
-rw-r--r-- | testpar/t_dset.c | 2 | ||||
-rw-r--r-- | testpar/t_file.c | 2 | ||||
-rw-r--r-- | testpar/t_mdset.c | 2 | ||||
-rw-r--r-- | testpar/t_mpi.c | 2 | ||||
-rw-r--r-- | testpar/testphdf5.c | 2 | ||||
-rw-r--r-- | testpar/testphdf5.h | 5 |
6 files changed, 8 insertions, 7 deletions
diff --git a/testpar/t_dset.c b/testpar/t_dset.c index 2e79014..efcf97c 100644 --- a/testpar/t_dset.c +++ b/testpar/t_dset.c @@ -13,7 +13,7 @@ * only. Collective mode for extendible datasets are not supported yet. */ -#include <testphdf5.h> +#include "testphdf5.h" /* * The following are various utility routines used by the tests. diff --git a/testpar/t_file.c b/testpar/t_file.c index 50cef96..668ae60 100644 --- a/testpar/t_file.c +++ b/testpar/t_file.c @@ -4,7 +4,7 @@ * Parallel tests for file operations */ -#include <testphdf5.h> +#include "testphdf5.h" /* * test file access by communicator besides COMM_WORLD. diff --git a/testpar/t_mdset.c b/testpar/t_mdset.c index 2ee7c30..1bbe299 100644 --- a/testpar/t_mdset.c +++ b/testpar/t_mdset.c @@ -1,4 +1,4 @@ -#include <testphdf5.h> +#include "testphdf5.h" #define DIM 2 #define SIZE 32 diff --git a/testpar/t_mpi.c b/testpar/t_mpi.c index c5cb288..0c2c89e 100644 --- a/testpar/t_mpi.c +++ b/testpar/t_mpi.c @@ -12,7 +12,7 @@ * Last process opens the same file and verifies the data. */ -#include <testphdf5.h> +#include "testphdf5.h" /* FILENAME and filenames must have the same number of names */ const char *FILENAME[2]={ diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index f78a0be..d6cf99f 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -4,7 +4,7 @@ * Main driver of the Parallel HDF5 tests */ -#include <testphdf5.h> +#include "testphdf5.h" #ifndef FILENAME_MAX #define FILENAME_MAX 512 diff --git a/testpar/testphdf5.h b/testpar/testphdf5.h index 076bf5a..b73a1f9 100644 --- a/testpar/testphdf5.h +++ b/testpar/testphdf5.h @@ -5,8 +5,9 @@ #include <assert.h> #include <stdlib.h> -#include <hdf5.h> -#include <h5test.h> + +#include "hdf5.h" +#include "h5test.h" /* Define some handy debugging shorthands, routines, ... */ /* debugging tools */ |