summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-04-09 21:58:16 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-04-09 21:58:16 (GMT)
commitf83a9cbcbd300d8fbe7ee62ba664a8aea5ad00ca (patch)
treec56bc6d327d7624b7a1cd757defe1d2fa85f3325
parenta756f0e0c9bdabcef789d9f1731d4af6aad46a00 (diff)
downloadhdf5-f83a9cbcbd300d8fbe7ee62ba664a8aea5ad00ca.zip
hdf5-f83a9cbcbd300d8fbe7ee62ba664a8aea5ad00ca.tar.gz
hdf5-f83a9cbcbd300d8fbe7ee62ba664a8aea5ad00ca.tar.bz2
[svn-r3792] Purpose:
Minor bug fix Description: Changed all #include that is for non-system files (hdf5's own header files) from <...> style to "...". Platforms tested: modi4 Parallel (-64 and -n32)
-rw-r--r--testpar/t_dset.c2
-rw-r--r--testpar/t_file.c2
-rw-r--r--testpar/t_mdset.c2
-rw-r--r--testpar/t_mpi.c2
-rw-r--r--testpar/testphdf5.c2
-rw-r--r--testpar/testphdf5.h4
6 files changed, 7 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..9a96e4f 100644
--- a/testpar/testphdf5.h
+++ b/testpar/testphdf5.h
@@ -5,8 +5,8 @@
#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 */