summaryrefslogtreecommitdiffstats
path: root/hl/examples
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2006-04-20 04:49:06 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2006-04-20 04:49:06 (GMT)
commit57a2e33c57a54939fb5e2feadb077fa5ba8f3de1 (patch)
tree711e2d8908778cb7e4fa520975c987dcda1a6fed /hl/examples
parentfdbf3b5a4bede7c342d5946cbcb427f4ca898423 (diff)
downloadhdf5-57a2e33c57a54939fb5e2feadb077fa5ba8f3de1.zip
hdf5-57a2e33c57a54939fb5e2feadb077fa5ba8f3de1.tar.gz
hdf5-57a2e33c57a54939fb5e2feadb077fa5ba8f3de1.tar.bz2
[svn-r12285] Purpose:
bug fixes. Description: Added #include "hdf5_hl.h" to each example programs. Platforms tested: Heping.
Diffstat (limited to 'hl/examples')
-rw-r--r--hl/examples/ex_ds1.c1
-rw-r--r--hl/examples/ex_image1.c1
-rw-r--r--hl/examples/ex_image2.c1
-rw-r--r--hl/examples/ex_lite1.c1
-rw-r--r--hl/examples/ex_lite2.c1
-rw-r--r--hl/examples/ex_lite3.c1
-rw-r--r--hl/examples/ex_table_01.c1
-rw-r--r--hl/examples/ex_table_02.c1
-rw-r--r--hl/examples/ex_table_03.c1
-rw-r--r--hl/examples/ex_table_04.c1
-rw-r--r--hl/examples/ex_table_05.c1
-rw-r--r--hl/examples/ex_table_06.c1
-rw-r--r--hl/examples/ex_table_07.c1
-rw-r--r--hl/examples/ex_table_08.c1
-rw-r--r--hl/examples/ex_table_09.c1
-rw-r--r--hl/examples/ex_table_10.c1
-rw-r--r--hl/examples/ex_table_11.c1
-rw-r--r--hl/examples/ex_table_12.c1
-rw-r--r--hl/examples/ptExampleFL.c1
-rw-r--r--hl/examples/ptExampleVL.c1
20 files changed, 20 insertions, 0 deletions
diff --git a/hl/examples/ex_ds1.c b/hl/examples/ex_ds1.c
index 0bcfe10..096a452 100644
--- a/hl/examples/ex_ds1.c
+++ b/hl/examples/ex_ds1.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#define RANK 2
diff --git a/hl/examples/ex_image1.c b/hl/examples/ex_image1.c
index a2ac884..ec7b4c2 100644
--- a/hl/examples/ex_image1.c
+++ b/hl/examples/ex_image1.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#define WIDTH (hsize_t)400
#define HEIGHT (hsize_t)200
diff --git a/hl/examples/ex_image2.c b/hl/examples/ex_image2.c
index 0b4038c..0b7876d 100644
--- a/hl/examples/ex_image2.c
+++ b/hl/examples/ex_image2.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
#include <string.h>
diff --git a/hl/examples/ex_lite1.c b/hl/examples/ex_lite1.c
index 1c709f5..35abb2c 100644
--- a/hl/examples/ex_lite1.c
+++ b/hl/examples/ex_lite1.c
@@ -14,6 +14,7 @@
#include "hdf5.h"
+#include "hdf5_hl.h"
#define RANK 2
diff --git a/hl/examples/ex_lite2.c b/hl/examples/ex_lite2.c
index 181bf83..fcb1c9d 100644
--- a/hl/examples/ex_lite2.c
+++ b/hl/examples/ex_lite2.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
int main( void )
{
diff --git a/hl/examples/ex_lite3.c b/hl/examples/ex_lite3.c
index c205b58..cc6e591 100644
--- a/hl/examples/ex_lite3.c
+++ b/hl/examples/ex_lite3.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
#define ATTR_SIZE 5
diff --git a/hl/examples/ex_table_01.c b/hl/examples/ex_table_01.c
index b9ca3a1..b3771f4 100644
--- a/hl/examples/ex_table_01.c
+++ b/hl/examples/ex_table_01.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ex_table_02.c b/hl/examples/ex_table_02.c
index 71671c1..acefef3 100644
--- a/hl/examples/ex_table_02.c
+++ b/hl/examples/ex_table_02.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ex_table_03.c b/hl/examples/ex_table_03.c
index f8287e1..7357dd2 100644
--- a/hl/examples/ex_table_03.c
+++ b/hl/examples/ex_table_03.c
@@ -14,6 +14,7 @@
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ex_table_04.c b/hl/examples/ex_table_04.c
index 4f378e1..c9559ef 100644
--- a/hl/examples/ex_table_04.c
+++ b/hl/examples/ex_table_04.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ex_table_05.c b/hl/examples/ex_table_05.c
index 321c060..62c231d 100644
--- a/hl/examples/ex_table_05.c
+++ b/hl/examples/ex_table_05.c
@@ -14,6 +14,7 @@
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ex_table_06.c b/hl/examples/ex_table_06.c
index c755ed0..377afc3 100644
--- a/hl/examples/ex_table_06.c
+++ b/hl/examples/ex_table_06.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ex_table_07.c b/hl/examples/ex_table_07.c
index 6f73d10..eb365b2 100644
--- a/hl/examples/ex_table_07.c
+++ b/hl/examples/ex_table_07.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ex_table_08.c b/hl/examples/ex_table_08.c
index e77c632..8ce2881 100644
--- a/hl/examples/ex_table_08.c
+++ b/hl/examples/ex_table_08.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ex_table_09.c b/hl/examples/ex_table_09.c
index 67dc2ce..21d1813 100644
--- a/hl/examples/ex_table_09.c
+++ b/hl/examples/ex_table_09.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ex_table_10.c b/hl/examples/ex_table_10.c
index ef84446..5483d52 100644
--- a/hl/examples/ex_table_10.c
+++ b/hl/examples/ex_table_10.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ex_table_11.c b/hl/examples/ex_table_11.c
index 81af4e4..d082f65 100644
--- a/hl/examples/ex_table_11.c
+++ b/hl/examples/ex_table_11.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ex_table_12.c b/hl/examples/ex_table_12.c
index 17bcf7e..9ec3054 100644
--- a/hl/examples/ex_table_12.c
+++ b/hl/examples/ex_table_12.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ptExampleFL.c b/hl/examples/ptExampleFL.c
index e3eba74..9831dd6 100644
--- a/hl/examples/ptExampleFL.c
+++ b/hl/examples/ptExampleFL.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------
diff --git a/hl/examples/ptExampleVL.c b/hl/examples/ptExampleVL.c
index ad35f40..183497e 100644
--- a/hl/examples/ptExampleVL.c
+++ b/hl/examples/ptExampleVL.c
@@ -13,6 +13,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "hdf5.h"
+#include "hdf5_hl.h"
#include <stdlib.h>
/*-------------------------------------------------------------------------