diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-05-15 19:22:33 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-05-15 19:22:33 (GMT) |
commit | b496ac1482d97086112c890a0154ce9e1522a815 (patch) | |
tree | f3c3ae6ccff7a59bb73e8fe9433f656dfaea680c /test | |
parent | f36a66b6fb7fb2eed7c8656972d6ce8ec9e75f8c (diff) | |
download | hdf5-b496ac1482d97086112c890a0154ce9e1522a815.zip hdf5-b496ac1482d97086112c890a0154ce9e1522a815.tar.gz hdf5-b496ac1482d97086112c890a0154ce9e1522a815.tar.bz2 |
[svn-r6878] Purpose:
Code cleanup
Description:
Limit the scope on more function prototypes/macros/typedefs.
Platforms tested:
FreeBSD 4.8 (sleipnir)
h5committest not necessary.
Diffstat (limited to 'test')
-rw-r--r-- | test/tgenprop.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/tgenprop.c b/test/tgenprop.c index 8ecfbfc..e75c9e0 100644 --- a/test/tgenprop.c +++ b/test/tgenprop.c @@ -22,13 +22,15 @@ * *************************************************************/ +#define H5P_PACKAGE /*suppress error about including H5Ppkg */ + /* Define this macro to indicate that the testing APIs should be available */ #define H5P_TESTING #include "testhdf5.h" #include "hdf5.h" #include "H5Dprivate.h" /* For Dataset creation property list names */ -#include "H5Pprivate.h" /* For H5P testing functions */ +#include "H5Ppkg.h" /* Generic Properties */ #define FILENAME "tgenprop.h5" |