summaryrefslogtreecommitdiffstats
path: root/src/H5MM.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-01-10 20:26:02 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-01-10 20:26:02 (GMT)
commitf8da76cb9f96d4b233ac9dcb896f9df74e803f38 (patch)
treeb23e28d99b9391163e25d84daabb09906998078f /src/H5MM.c
parent71ca572047b5d73b200eb761bc1234f3b6c4783d (diff)
downloadhdf5-f8da76cb9f96d4b233ac9dcb896f9df74e803f38.zip
hdf5-f8da76cb9f96d4b233ac9dcb896f9df74e803f38.tar.gz
hdf5-f8da76cb9f96d4b233ac9dcb896f9df74e803f38.tar.bz2
[svn-r6266] Purpose:
Code cleanup/new feature. Description: Split FUNC_LEAVE into API and non-API specific versions. This allows a solution to compiling this branch with C++, as well as reducing the size of the binaries produced. Platforms tested: FreeBSD 4.7 (sleipnir) w/serial, parallel (including MPE) & thread-safe
Diffstat (limited to 'src/H5MM.c')
-rw-r--r--src/H5MM.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5MM.c b/src/H5MM.c
index d5fff2f..554dcc9 100644
--- a/src/H5MM.c
+++ b/src/H5MM.c
@@ -72,7 +72,7 @@ H5MM_realloc(void *mem, size_t size)
ret_value=mem;
done:
- FUNC_LEAVE(ret_value);
+ FUNC_LEAVE_NOAPI(ret_value);
}
@@ -112,7 +112,7 @@ H5MM_xstrdup(const char *s)
#ifdef LATER
done:
#endif /* LATER */
- FUNC_LEAVE(ret_value);
+ FUNC_LEAVE_NOAPI(ret_value);
}
@@ -149,7 +149,7 @@ H5MM_strdup(const char *s)
HDstrcpy(ret_value, s);
done:
- FUNC_LEAVE (ret_value);
+ FUNC_LEAVE_NOAPI(ret_value);
}
@@ -183,5 +183,5 @@ H5MM_xfree(void *mem)
if (mem)
HDfree(mem);
- FUNC_LEAVE(NULL);
+ FUNC_LEAVE_NOAPI(NULL);
}