diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-05-15 21:28:04 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-05-15 21:28:04 (GMT) |
commit | c514abd4967c7485d8341b036ba4c3848f7fff15 (patch) | |
tree | deb4aa669aa3aca21e0ff820673a07c89faacc55 /doc/html | |
parent | a31d4b8619c9be7c4a0b9c8c3fcb2ffa888329ee (diff) | |
download | hdf5-c514abd4967c7485d8341b036ba4c3848f7fff15.zip hdf5-c514abd4967c7485d8341b036ba4c3848f7fff15.tar.gz hdf5-c514abd4967c7485d8341b036ba4c3848f7fff15.tar.bz2 |
[svn-r3934] Purpose:
Code Update
Description:
Ported change from the 1.5 branch to the 1.4 branch where all HDF5
include files are in quotes instead of angle brackets:
#include "hdf5_file.h"
instead of
#include <hdf5_file.h>
Platforms tested:
Linux
Diffstat (limited to 'doc/html')
-rw-r--r-- | doc/html/TechNotes/openmp-hdf5.c | 8 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_crtatt.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_crtdat.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_crtfile.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_crtgrp.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_crtgrpar.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_crtgrpd.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_iterate.c | 6 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_mount.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_rdwt.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_ref2obj.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_ref2objr.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_ref2objw.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_ref2reg.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_ref2regr.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_ref2regw.c | 2 | ||||
-rw-r--r-- | doc/html/Tutor/examples/h5_reference.c | 2 | ||||
-rw-r--r-- | doc/html/ph5example.c | 3 |
18 files changed, 24 insertions, 23 deletions
diff --git a/doc/html/TechNotes/openmp-hdf5.c b/doc/html/TechNotes/openmp-hdf5.c index 6d61c38..2765589 100644 --- a/doc/html/TechNotes/openmp-hdf5.c +++ b/doc/html/TechNotes/openmp-hdf5.c @@ -11,7 +11,7 @@ Appendix A: OpenMP-HDF5 Programs * it is safe to use HDF. */ -#include <hdf5.h> +#include "hdf5.h" #include <omp.h> #include <math.h> @@ -142,7 +142,7 @@ void CalcWriteData(hid_t fid, hid_t dataspace, hid_t datatype) * */ -#include <hdf5.h> +#include "hdf5.h" #include <omp.h> #define FILE "SDS.h5" @@ -232,7 +232,7 @@ main (void) * the HDF5 file in parallel. This program only works occasionally. */ -#include <hdf5.h> +#include "hdf5.h" #include <omp.h> #define FILE "SDS.h5" @@ -328,7 +328,7 @@ void writeData(int id, hid_t file, hid_t dataspace, hid_t datatype, char *dname) * parallel. It also only works occasionally. */ -#include <hdf5.h> +#include "hdf5.h" #include <omp.h> #define FILE "SDS.h5" diff --git a/doc/html/Tutor/examples/h5_crtatt.c b/doc/html/Tutor/examples/h5_crtatt.c index a2b887c..5802538 100644 --- a/doc/html/Tutor/examples/h5_crtatt.c +++ b/doc/html/Tutor/examples/h5_crtatt.c @@ -2,7 +2,7 @@ * Creating a dataset attribute. */ -#include <hdf5.h> +#include "hdf5.h" #define FILE "dset.h5" main() { diff --git a/doc/html/Tutor/examples/h5_crtdat.c b/doc/html/Tutor/examples/h5_crtdat.c index d704cf1..cb165b8 100644 --- a/doc/html/Tutor/examples/h5_crtdat.c +++ b/doc/html/Tutor/examples/h5_crtdat.c @@ -2,7 +2,7 @@ * Creating and closing a dataset. */ -#include <hdf5.h> +#include "hdf5.h" #define FILE "dset.h5" main() { diff --git a/doc/html/Tutor/examples/h5_crtfile.c b/doc/html/Tutor/examples/h5_crtfile.c index 680cde8..1857abd 100644 --- a/doc/html/Tutor/examples/h5_crtfile.c +++ b/doc/html/Tutor/examples/h5_crtfile.c @@ -2,7 +2,7 @@ * Creating and closing a file. */ -#include <hdf5.h> +#include "hdf5.h" #define FILE "file.h5" main() { diff --git a/doc/html/Tutor/examples/h5_crtgrp.c b/doc/html/Tutor/examples/h5_crtgrp.c index a6aad93..3f003f1 100644 --- a/doc/html/Tutor/examples/h5_crtgrp.c +++ b/doc/html/Tutor/examples/h5_crtgrp.c @@ -2,7 +2,7 @@ * Creating and closing a group. */ -#include <hdf5.h> +#include "hdf5.h" #define FILE "group.h5" main() { diff --git a/doc/html/Tutor/examples/h5_crtgrpar.c b/doc/html/Tutor/examples/h5_crtgrpar.c index 6dcc003..0569013 100644 --- a/doc/html/Tutor/examples/h5_crtgrpar.c +++ b/doc/html/Tutor/examples/h5_crtgrpar.c @@ -2,7 +2,7 @@ * Creating groups using absolute and relative names. */ -#include <hdf5.h> +#include "hdf5.h" #define FILE "groups.h5" main() { diff --git a/doc/html/Tutor/examples/h5_crtgrpd.c b/doc/html/Tutor/examples/h5_crtgrpd.c index e497764..c803fed 100644 --- a/doc/html/Tutor/examples/h5_crtgrpd.c +++ b/doc/html/Tutor/examples/h5_crtgrpd.c @@ -2,7 +2,7 @@ * Create two datasets within groups. */ -#include <hdf5.h> +#include "hdf5.h" #define FILE "groups.h5" main() { diff --git a/doc/html/Tutor/examples/h5_iterate.c b/doc/html/Tutor/examples/h5_iterate.c index db58183..20c13f5 100644 --- a/doc/html/Tutor/examples/h5_iterate.c +++ b/doc/html/Tutor/examples/h5_iterate.c @@ -1,7 +1,7 @@ -#include <hdf5.h> +#include "hdf5.h" -#define FILE "iterate.h5" -#define FALSE 0 +#define FILE "iterate.h5" +#define FALSE 0 /* 1-D dataset with fixed dimensions */ #define SPACE1_NAME "Space1" diff --git a/doc/html/Tutor/examples/h5_mount.c b/doc/html/Tutor/examples/h5_mount.c index 452ad6e..352d02e 100644 --- a/doc/html/Tutor/examples/h5_mount.c +++ b/doc/html/Tutor/examples/h5_mount.c @@ -6,7 +6,7 @@ * under name /G/D and data is printed out. */ -#include<hdf5.h> +#include "hdf5.h" #define FILE1 "mount1.h5" #define FILE2 "mount2.h5" diff --git a/doc/html/Tutor/examples/h5_rdwt.c b/doc/html/Tutor/examples/h5_rdwt.c index e651a29..58dfa62 100644 --- a/doc/html/Tutor/examples/h5_rdwt.c +++ b/doc/html/Tutor/examples/h5_rdwt.c @@ -2,7 +2,7 @@ * Writing and reading an existing dataset. */ -#include <hdf5.h> +#include "hdf5.h" #define FILE "dset.h5" main() { diff --git a/doc/html/Tutor/examples/h5_ref2obj.c b/doc/html/Tutor/examples/h5_ref2obj.c index d5699a7..e8974e4 100644 --- a/doc/html/Tutor/examples/h5_ref2obj.c +++ b/doc/html/Tutor/examples/h5_ref2obj.c @@ -1,4 +1,4 @@ -#include <hdf5.h> +#include "hdf5.h" /* This program shows how to create and store references to the objects. diff --git a/doc/html/Tutor/examples/h5_ref2objr.c b/doc/html/Tutor/examples/h5_ref2objr.c index a226778..1b1d61a 100644 --- a/doc/html/Tutor/examples/h5_ref2objr.c +++ b/doc/html/Tutor/examples/h5_ref2objr.c @@ -1,5 +1,5 @@ #include <stdlib.h> -#include <hdf5.h> +#include "hdf5.h" #define FILE1 "trefer1.h5" diff --git a/doc/html/Tutor/examples/h5_ref2objw.c b/doc/html/Tutor/examples/h5_ref2objw.c index d499f8e..c3160b4 100644 --- a/doc/html/Tutor/examples/h5_ref2objw.c +++ b/doc/html/Tutor/examples/h5_ref2objw.c @@ -1,5 +1,5 @@ -#include <hdf5.h> +#include "hdf5.h" #define FILE1 "trefer1.h5" diff --git a/doc/html/Tutor/examples/h5_ref2reg.c b/doc/html/Tutor/examples/h5_ref2reg.c index 9dcaff5..c5bf7ca 100644 --- a/doc/html/Tutor/examples/h5_ref2reg.c +++ b/doc/html/Tutor/examples/h5_ref2reg.c @@ -12,7 +12,7 @@ and selected elements data from the integer dataset. */ -#include <hdf5.h> +#include "hdf5.h" #define filename "REF_REG.h5" #define dsetnamev "MATRIX" diff --git a/doc/html/Tutor/examples/h5_ref2regr.c b/doc/html/Tutor/examples/h5_ref2regr.c index 9f747ae..acfff5e 100644 --- a/doc/html/Tutor/examples/h5_ref2regr.c +++ b/doc/html/Tutor/examples/h5_ref2regr.c @@ -1,5 +1,5 @@ #include <stdlib.h> -#include <hdf5.h> +#include "hdf5.h" #define FILE2 "trefer2.h5" #define NPOINTS 10 diff --git a/doc/html/Tutor/examples/h5_ref2regw.c b/doc/html/Tutor/examples/h5_ref2regw.c index 5f27950..4b39e72 100644 --- a/doc/html/Tutor/examples/h5_ref2regw.c +++ b/doc/html/Tutor/examples/h5_ref2regw.c @@ -1,5 +1,5 @@ #include <stdlib.h> -#include <hdf5.h> +#include "hdf5.h" #define FILE2 "trefer2.h5" #define SPACE1_NAME "Space1" diff --git a/doc/html/Tutor/examples/h5_reference.c b/doc/html/Tutor/examples/h5_reference.c index a69afe2..f5b4745 100644 --- a/doc/html/Tutor/examples/h5_reference.c +++ b/doc/html/Tutor/examples/h5_reference.c @@ -8,7 +8,7 @@ * */ -#include<hdf5.h> +#include "hdf5.h" #define FILE "refere.h5" diff --git a/doc/html/ph5example.c b/doc/html/ph5example.c index 84f5ab7..48feb89 100644 --- a/doc/html/ph5example.c +++ b/doc/html/ph5example.c @@ -14,7 +14,8 @@ */ #include <assert.h> -#include <hdf5.h> + +#include "hdf5.h" #ifdef H5_HAVE_PARALLEL /* Temporary source code */ |