[svn-r3771] Purpose:

Update
Description:
    Changed

            #include <hdf5_file.h>

    to

            #include "hdf5_file.h"

    so that gcc can find our dependencies files instead of all of the
    include files (we don't care about system header files).
Platforms tested:
    Linux
This commit is contained in:
Bill Wendling 2001-04-03 13:33:07 -05:00
parent bfd983e7f4
commit 88b51be743
5 changed files with 7 additions and 5 deletions

View File

@ -11,7 +11,8 @@
*/
#include <stdlib.h>
#include <hdf5.h>
#include "hdf5.h"
#define FILE "Attributes.h5"

View File

@ -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"

View File

@ -9,7 +9,8 @@
*/
#include <stdlib.h>
#include<hdf5.h>
#include "hdf5.h"
#define FILE "refere.h5"

View File

@ -9,7 +9,7 @@
* memory dataset preserving the shape of the selection.
*/
#include <hdf5.h>
#include "hdf5.h"
#define FILE "Select.h5"

View File

@ -3,7 +3,7 @@
* Data conversion is performed during write operation.
*/
#include <hdf5.h>
#include "hdf5.h"
#define FILE "SDS.h5"
#define DATASETNAME "IntArray"