diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-03 17:48:52 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-03 17:48:52 (GMT) |
commit | d57e19825bbdaa7cfe9614185a98dbe30a0bef58 (patch) | |
tree | f996436c222eb688cdc45b5b171f08ecc10962a1 | |
parent | 6c130407ebd653e967526c4d97bed3b76f2bf59d (diff) | |
download | hdf5-d57e19825bbdaa7cfe9614185a98dbe30a0bef58.zip hdf5-d57e19825bbdaa7cfe9614185a98dbe30a0bef58.tar.gz hdf5-d57e19825bbdaa7cfe9614185a98dbe30a0bef58.tar.bz2 |
[svn-r3769] Purpose:
Update
Description:
Replaced
#include <hdf5_file.h>
with
#include "hdf5_file.h"
so that gcc can pick up our files more easily without picking up
system header files (which we don't care about being in the
dependencies list).
Platforms tested:
Linux
-rw-r--r-- | tools/misc/h5debug.c | 20 | ||||
-rw-r--r-- | tools/misc/h5import.c | 2 | ||||
-rw-r--r-- | tools/misc/h5repart.c | 2 | ||||
-rw-r--r-- | tools/misc/pdb2hdf.c | 7 |
4 files changed, 16 insertions, 15 deletions
diff --git a/tools/misc/h5debug.c b/tools/misc/h5debug.c index 76eb472..8832369 100644 --- a/tools/misc/h5debug.c +++ b/tools/misc/h5debug.c @@ -16,18 +16,18 @@ */ #define H5F_PACKAGE /*suppress error about including H5Fpkg */ -#include <H5private.h> -#include <H5Iprivate.h> -#include <H5Bprivate.h> -#include <H5Pprivate.h> -#include <H5Fpkg.h> -#include <H5Gprivate.h> -#include <H5HGprivate.h> -#include <H5HLprivate.h> -#include <H5Oprivate.h> +#include "H5private.h" +#include "H5Iprivate.h" +#include "H5Bprivate.h" +#include "H5Pprivate.h" +#include "H5Fpkg.h" +#include "H5Gprivate.h" +#include "H5HGprivate.h" +#include "H5HLprivate.h" +#include "H5Oprivate.h" /* File drivers */ -#include <H5FDfamily.h> +#include "H5FDfamily.h" #define INDENT 3 #define VCOL 50 diff --git a/tools/misc/h5import.c b/tools/misc/h5import.c index e896feb..b669259 100644 --- a/tools/misc/h5import.c +++ b/tools/misc/h5import.c @@ -27,7 +27,7 @@ #endif #ifdef WIN32 -#include <io.h> +# include <io.h> #endif diff --git a/tools/misc/h5repart.c b/tools/misc/h5repart.c index de7b3df..5254bef 100644 --- a/tools/misc/h5repart.c +++ b/tools/misc/h5repart.c @@ -33,7 +33,7 @@ #endif #ifdef WIN32 -#include <io.h> +# include <io.h> #endif #ifndef FALSE diff --git a/tools/misc/pdb2hdf.c b/tools/misc/pdb2hdf.c index 7ecd28e..d81dbdd 100644 --- a/tools/misc/pdb2hdf.c +++ b/tools/misc/pdb2hdf.c @@ -10,12 +10,13 @@ * meta data that points into the PDB file. */ #include <assert.h> -#include <hdf5.h> -#include <pdb.h> -#include <score.h> #include <stdio.h> #include <string.h> +#include "hdf5.h" +#include "pdb.h" +#include "score.h" + /* * libsilo renames all the PDB functions. However, this source files uses * their documented names, so we have #define's to translate them to Silo |