From 7088f7715f364ddc5efe04e583a781f05953af3c Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Mon, 9 Nov 1998 14:04:46 -0500 Subject: [svn-r886] Fixed H5dont_atexit in development branch also. --- src/H5.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/H5.c b/src/H5.c index 02fd278..af406ee 100644 --- a/src/H5.c +++ b/src/H5.c @@ -304,12 +304,18 @@ H5_init_interface(void) herr_t H5dont_atexit(void) { +#ifdef DONT_DO_THIS FUNC_ENTER_INIT(H5dont_atexit, NULL, FAIL); +#endif /* DONT_DO_THIS */ if (install_atexit_g == TRUE) install_atexit_g = FALSE; +#ifdef DONT_DO_THIS FUNC_LEAVE(SUCCEED); +#else /* DONT_DO_THIS */ + return(SUCCEED); +#endif /* DONT_DO_THIS */ } -- cgit v0.12