diff options
-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 |