summaryrefslogtreecommitdiffstats
path: root/test/bittests.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/bittests.c')
-rw-r--r--test/bittests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/bittests.c b/test/bittests.c
index 13ad749..05ede24 100644
--- a/test/bittests.c
+++ b/test/bittests.c
@@ -933,11 +933,11 @@ main(void)
if (nerrors) {
printf("***** %u FAILURE%s! *****\n", nerrors, 1 == nerrors ? "" : "S");
- HDexit(EXIT_FAILURE);
+ exit(EXIT_FAILURE);
}
printf("All bit tests passed.\n");
H5close();
- HDexit(EXIT_SUCCESS);
+ exit(EXIT_SUCCESS);
} /* end main() */