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/th5s.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/th5s.c')
-rw-r--r-- | test/th5s.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/th5s.c b/test/th5s.c index b29de85..df27c16 100644 --- a/test/th5s.c +++ b/test/th5s.c @@ -20,12 +20,12 @@ * *************************************************************/ -#include <testhdf5.h> +#include "testhdf5.h" -#include <H5private.h> -#include <H5Bprivate.h> -#include <H5Sprivate.h> -#include <H5Pprivate.h> +#include "H5private.h" +#include "H5Bprivate.h" +#include "H5Sprivate.h" +#include "H5Pprivate.h" #define TESTFILE "th5s.h5" #define DATAFILE "th5s1.h5" |