summaryrefslogtreecommitdiffstats
path: root/src/H5Vprivate.h
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2001-06-07 16:03:02 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2001-06-07 16:03:02 (GMT)
commit504bc34f6015d2c4df03b024c95cdbbab71cbd5f (patch)
treeacb62b5417ce2d5ef9f1209a5a7ac7945eea7e45 /src/H5Vprivate.h
parent80737b93ef4425801da0f24b592e9b1bb3e3bca9 (diff)
downloadhdf5-504bc34f6015d2c4df03b024c95cdbbab71cbd5f.zip
hdf5-504bc34f6015d2c4df03b024c95cdbbab71cbd5f.tar.gz
hdf5-504bc34f6015d2c4df03b024c95cdbbab71cbd5f.tar.bz2
[svn-r3974] code warrior port
Diffstat (limited to 'src/H5Vprivate.h')
-rw-r--r--src/H5Vprivate.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Vprivate.h b/src/H5Vprivate.h
index dabfe19..df8fe44 100644
--- a/src/H5Vprivate.h
+++ b/src/H5Vprivate.h
@@ -95,7 +95,7 @@ __DLL__ hsize_t H5V_array_offset(uintn n, const hsize_t *total_size,
*
*-------------------------------------------------------------------------
*/
-static inline hsize_t UNUSED
+static H5_inline hsize_t UNUSED
H5V_vector_reduce_product(uintn n, const hsize_t *v)
{
size_t ans = 1;
@@ -122,7 +122,7 @@ H5V_vector_reduce_product(uintn n, const hsize_t *v)
*
*-------------------------------------------------------------------------
*/
-static inline htri_t UNUSED
+static H5_inline htri_t UNUSED
H5V_vector_zerop_u(intn n, const hsize_t *v)
{
if (!v) return TRUE;
@@ -149,7 +149,7 @@ H5V_vector_zerop_u(intn n, const hsize_t *v)
*
*-------------------------------------------------------------------------
*/
-static inline htri_t UNUSED
+static H5_inline htri_t UNUSED
H5V_vector_zerop_s(intn n, const hssize_t *v)
{
if (!v) return TRUE;
@@ -178,7 +178,7 @@ H5V_vector_zerop_s(intn n, const hssize_t *v)
*
*-------------------------------------------------------------------------
*/
-static inline intn UNUSED
+static H5_inline intn UNUSED
H5V_vector_cmp_u (intn n, const hsize_t *v1, const hsize_t *v2)
{
if (v1 == v2) return 0;
@@ -211,7 +211,7 @@ H5V_vector_cmp_u (intn n, const hsize_t *v1, const hsize_t *v2)
*
*-------------------------------------------------------------------------
*/
-static inline intn UNUSED
+static H5_inline intn UNUSED
H5V_vector_cmp_s (uintn n, const hssize_t *v1, const hssize_t *v2)
{
if (v1 == v2) return 0;
@@ -239,7 +239,7 @@ H5V_vector_cmp_s (uintn n, const hssize_t *v1, const hssize_t *v2)
*
*-------------------------------------------------------------------------
*/
-static inline void UNUSED
+static H5_inline void UNUSED
H5V_vector_inc(intn n, hsize_t *v1, const hsize_t *v2)
{
while (n--) *v1++ += *v2++;