diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-09 14:34:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-09 14:34:35 (GMT) |
commit | 4fe4a51818747e067919c5d9b043395a2f4d04dc (patch) | |
tree | c300d737bfb6e5f1d2c09f90f60d87ea104018d7 /src/H5A.c | |
parent | 5fbe02e72106b53e7dcad898984255b92190b476 (diff) | |
download | hdf5-4fe4a51818747e067919c5d9b043395a2f4d04dc.zip hdf5-4fe4a51818747e067919c5d9b043395a2f4d04dc.tar.gz hdf5-4fe4a51818747e067919c5d9b043395a2f4d04dc.tar.bz2 |
[svn-r7186] Purpose:
Code cleanup
Description:
More tweaks to clean up warnings from lint.
Platforms tested:
FreeBSD 4.8 (sleipnir)
not major enough to h5committest
Diffstat (limited to 'src/H5A.c')
-rw-r--r-- | src/H5A.c | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -15,21 +15,17 @@ #define H5A_PACKAGE /*suppress error about including H5Apkg */ #define H5S_PACKAGE /*suppress error about including H5Spkg */ +/* Pablo information */ +/* (Put before include files to avoid problems with inline functions) */ +#define PABLO_MASK H5A_mask + /* Private header files */ #include "H5private.h" /* Generic Functions */ #include "H5Apkg.h" /* Attributes */ -#include "H5Bprivate.h" /* B-tree subclass names */ -#include "H5Dprivate.h" /* Datasets */ #include "H5Eprivate.h" /* Error handling */ -#include "H5Gprivate.h" /* Groups */ #include "H5Iprivate.h" /* IDs */ #include "H5MMprivate.h" /* Memory management */ -#include "H5Oprivate.h" /* Object Headers */ -#include "H5Pprivate.h" /* Property lists */ #include "H5Spkg.h" /* Dataspace functions */ -#include "H5Tprivate.h" /* Datatypes */ - -#define PABLO_MASK H5A_mask /* Is the interface initialized? */ static int interface_initialize_g = 0; |