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 /tools/misc/pdb2hdf.c | |
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
Diffstat (limited to 'tools/misc/pdb2hdf.c')
-rw-r--r-- | tools/misc/pdb2hdf.c | 7 |
1 files changed, 4 insertions, 3 deletions
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 |