diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-03 18:09:16 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-03 18:09:16 (GMT) |
commit | bfd983e7f480782732db48b1302978d840e756bc (patch) | |
tree | 7112b4c777ea78d4fb247cb090bad4f0ff8573cc /test/gheap.c | |
parent | d57e19825bbdaa7cfe9614185a98dbe30a0bef58 (diff) | |
download | hdf5-bfd983e7f480782732db48b1302978d840e756bc.zip hdf5-bfd983e7f480782732db48b1302978d840e756bc.tar.gz hdf5-bfd983e7f480782732db48b1302978d840e756bc.tar.bz2 |
[svn-r3770] Purpose:
Update
Description:
Changed includes of the form:
#include <hdf5_file.h>
to
#include "hdf5_file.h"
so that gcc can pick them up easier without including the system
header files since we don't care about them.
Platforms tested:
Linux
Diffstat (limited to 'test/gheap.c')
-rw-r--r-- | test/gheap.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/gheap.c b/test/gheap.c index 7d651e5..16bd0e5 100644 --- a/test/gheap.c +++ b/test/gheap.c @@ -9,14 +9,14 @@ * collections but the collections are not related to one * another by anything that appears in the file format. */ -#include <h5test.h> -#include <H5private.h> -#include <H5Eprivate.h> -#include <H5Fprivate.h> -#include <H5Gprivate.h> -#include <H5HGprivate.h> -#include <H5Iprivate.h> -#include <H5Pprivate.h> +#include "h5test.h" +#include "H5private.h" +#include "H5Eprivate.h" +#include "H5Fprivate.h" +#include "H5Gprivate.h" +#include "H5HGprivate.h" +#include "H5Iprivate.h" +#include "H5Pprivate.h" const char *FILENAME[] = { "gheap1", |