summaryrefslogtreecommitdiffstats
path: root/src/H5P.c
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-04-05 17:29:14 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-04-05 17:29:14 (GMT)
commit5e483d0184df78b6d3024c5ececff24406ad4b43 (patch)
treea1965b623087c2c2219033ca0be849a2a78f1ec0 /src/H5P.c
parente8ee45fa53d0f29b05bdbbd991be4797d75b4ee7 (diff)
downloadhdf5-5e483d0184df78b6d3024c5ececff24406ad4b43.zip
hdf5-5e483d0184df78b6d3024c5ececff24406ad4b43.tar.gz
hdf5-5e483d0184df78b6d3024c5ececff24406ad4b43.tar.bz2
[svn-r3781] Purpose:
Update Description: Changed #include <hdf_file.h> construct to #include "hdf_file.h" so that the GNU compiler can more easily pick up the dependencies which it places in the .depend and Dependencies files. Also regenerated the Dependencies to go along with this. Platforms tested: Linux
Diffstat (limited to 'src/H5P.c')
-rw-r--r--src/H5P.c60
1 files changed, 30 insertions, 30 deletions
diff --git a/src/H5P.c b/src/H5P.c
index aa23d1e..90db98d 100644
--- a/src/H5P.c
+++ b/src/H5P.c
@@ -1,44 +1,44 @@
/****************************************************************************
-* NCSA HDF *
-* Software Development Group *
-* National Center for Supercomputing Applications *
-* University of Illinois at Urbana-Champaign *
-* 605 E. Springfield, Champaign IL 61820 *
-* *
-* For conditions of distribution and use, see the accompanying *
-* hdf/COPYING file. *
-* *
+* NCSA HDF *
+* Software Development Group *
+* National Center for Supercomputing Applications *
+* University of Illinois at Urbana-Champaign *
+* 605 E. Springfield, Champaign IL 61820 *
+* *
+* For conditions of distribution and use, see the accompanying *
+* hdf/COPYING file. *
+* *
****************************************************************************/
/* $Id$ */
/* Private header files */
-#include <H5private.h> /* Generic Functions */
-#include <H5Iprivate.h> /* IDs */
-#include <H5Bprivate.h> /* B-tree subclass names */
-#include <H5Dprivate.h> /* Datasets */
-#include <H5Eprivate.h> /* Error handling */
-#include <H5Fprivate.h> /* Files */
-#include <H5FDprivate.h> /* File drivers */
-#include <H5FLprivate.h> /* Free Lists */
-#include <H5MMprivate.h> /* Memory management */
-#include <H5Pprivate.h> /* Property lists */
+#include "H5private.h" /* Generic Functions */
+#include "H5Iprivate.h" /* IDs */
+#include "H5Bprivate.h" /* B-tree subclass names */
+#include "H5Dprivate.h" /* Datasets */
+#include "H5Eprivate.h" /* Error handling */
+#include "H5Fprivate.h" /* Files */
+#include "H5FDprivate.h" /* File drivers */
+#include "H5FLprivate.h" /* Free Lists */
+#include "H5MMprivate.h" /* Memory management */
+#include "H5Pprivate.h" /* Property lists */
/* Default file driver - see H5Pget_driver() */
-#include <H5FDsec2.h> /* Posix unbuffered I/O file driver */
+#include "H5FDsec2.h" /* Posix unbuffered I/O file driver */
#ifdef WANT_H5_V1_2_COMPAT
/* Other predefined file drivers */
-#include <H5FDcore.h> /* Files stored entirely in memory */
-#include <H5FDfamily.h> /* File families */
-#include <H5FDmpio.h> /* Parallel files using MPI-2 I/O */
-#include <H5FDstdio.h> /* Standard C buffered I/O */
-#include <H5FDsrb.h> /* Remote access using SRB */
-#include <H5FDgass.h> /* Remote files using GASS I/O */
-#include <H5FDdpss.h> /* Remote access using Storage Client API */
-#include <H5FDstream.h> /* in-memory files streamed via sockets */
-#include <H5FDmulti.h> /* Usage-partitioned file family */
-#include <H5FDlog.h> /* sec2 driver with I/O logging (for debugging) */
+#include "H5FDcore.h" /* Files stored entirely in memory */
+#include "H5FDfamily.h" /* File families */
+#include "H5FDmpio.h" /* Parallel files using MPI-2 I/O */
+#include "H5FDstdio.h" /* Standard C buffered I/O */
+#include "H5FDsrb.h" /* Remote access using SRB */
+#include "H5FDgass.h" /* Remote files using GASS I/O */
+#include "H5FDdpss.h" /* Remote access using Storage Client API */
+#include "H5FDstream.h" /* in-memory files streamed via sockets */
+#include "H5FDmulti.h" /* Usage-partitioned file family */
+#include "H5FDlog.h" /* sec2 driver with I/O logging (for debugging) */
#endif /* WANT_H5_V1_2_COMPAT */