summaryrefslogtreecommitdiffstats
path: root/test/gen_new_group.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-10-03 15:48:22 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-10-03 15:48:22 (GMT)
commit05429c6c6cbc96cf9b83ff87a806b33f6c18bd18 (patch)
tree1512bef4f2498e8f15e2469cdd733eac6ece24a6 /test/gen_new_group.c
parent858cbb7c09386639f74288a8b1e9819848b70234 (diff)
downloadhdf5-05429c6c6cbc96cf9b83ff87a806b33f6c18bd18.zip
hdf5-05429c6c6cbc96cf9b83ff87a806b33f6c18bd18.tar.gz
hdf5-05429c6c6cbc96cf9b83ff87a806b33f6c18bd18.tar.bz2
[svn-r12711] Description:
Define 'TRUE' macro and remove dependency on h5test header/library. Tested on: Linux/64 2.6 (chicago2) w/--enable-build-all
Diffstat (limited to 'test/gen_new_group.c')
-rw-r--r--test/gen_new_group.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/gen_new_group.c b/test/gen_new_group.c
index e063f70..a1ebf5f 100644
--- a/test/gen_new_group.c
+++ b/test/gen_new_group.c
@@ -27,10 +27,16 @@
*/
#include "hdf5.h"
-#include "h5test.h"
#define FILENAME "group_new.h5"
+#ifndef TRUE
+#define TRUE 1
+#endif /* TRUE */
+#ifndef FALSE
+#define FALSE 0
+#endif /* FALSE */
+
int main(void)
{
hid_t fid = -1; /* File ID */