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 /fortran/src | |
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 'fortran/src')
-rw-r--r-- | fortran/src/H5Git.c | 7 | ||||
-rw-r--r-- | fortran/src/H5Git.h | 2 | ||||
-rw-r--r-- | fortran/src/H5Tf.c | 1 | ||||
-rw-r--r-- | fortran/src/H5f90.h | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/fortran/src/H5Git.c b/fortran/src/H5Git.c index 51db86f..c18c3d3 100644 --- a/fortran/src/H5Git.c +++ b/fortran/src/H5Git.c @@ -5,8 +5,9 @@ *------------------------------------------------------------------------- */ -#include <hdf5.h> +#include "hdf5.h" #include "H5Git.h" + #define FALSE 0 herr_t count_elems(hid_t loc_id, const char *name, void *opdata); @@ -49,7 +50,7 @@ typedef struct retval { * *------------------------------------------------------------------------- */ -int +int H5Gn_members( hid_t loc_id, char *group_name ) { int res; @@ -100,7 +101,7 @@ H5Gn_members( hid_t loc_id, char *group_name ) * *------------------------------------------------------------------------- */ -herr_t +herr_t H5Gget_obj_info_idx( hid_t loc_id, char *group_name, int idx, char **objname, int *type ) { int res; diff --git a/fortran/src/H5Git.h b/fortran/src/H5Git.h index e243a18..7211440 100644 --- a/fortran/src/H5Git.h +++ b/fortran/src/H5Git.h @@ -7,7 +7,7 @@ #ifndef _H5Git_H #define _H5Git_H -#include <hdf5.h> +#include "hdf5.h" int H5Gn_members( hid_t loc_id, char *group_name ); diff --git a/fortran/src/H5Tf.c b/fortran/src/H5Tf.c index 06ca00b..fcb5f41 100644 --- a/fortran/src/H5Tf.c +++ b/fortran/src/H5Tf.c @@ -1,6 +1,5 @@ #include "H5f90.h" - /*---------------------------------------------------------------------------- * Name: h5topen_c * Purpose: Call H5Topen to open a datatype diff --git a/fortran/src/H5f90.h b/fortran/src/H5f90.h index 94f61eb..ab72b91 100644 --- a/fortran/src/H5f90.h +++ b/fortran/src/H5f90.h @@ -1,7 +1,7 @@ #ifndef _H5f90_H #define _H5f90_H -#include <hdf5.h> +#include "hdf5.h" #include "H5f90i.h" #include "H5f90proto.h" |