diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-09-25 22:16:37 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-09-25 22:16:37 (GMT) |
commit | 06935ba4bbc21defb89f19321650b931e9d63fb2 (patch) | |
tree | d628e7b8a5dacf0bf41bfb42b5062cdb54a8996e | |
parent | 18b24252a630750df8345ccfa07ff612d605d340 (diff) | |
download | hdf5-06935ba4bbc21defb89f19321650b931e9d63fb2.zip hdf5-06935ba4bbc21defb89f19321650b931e9d63fb2.tar.gz hdf5-06935ba4bbc21defb89f19321650b931e9d63fb2.tar.bz2 |
[svn-r724] Changed inline declarations back.
-rw-r--r-- | src/H5Vprivate.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Vprivate.h b/src/H5Vprivate.h index 3f7bfbf..895a240 100644 --- a/src/H5Vprivate.h +++ b/src/H5Vprivate.h @@ -84,7 +84,7 @@ herr_t H5V_array_fill(void *_dst, const void *src, size_t size, size_t count); * *------------------------------------------------------------------------- */ -static __inline__ hsize_t __unused__ +static inline hsize_t __unused__ H5V_vector_reduce_product(intn n, const hsize_t *v) { size_t ans = 1; @@ -111,7 +111,7 @@ H5V_vector_reduce_product(intn n, const hsize_t *v) * *------------------------------------------------------------------------- */ -static __inline__ hbool_t __unused__ +static inline hbool_t __unused__ H5V_vector_zerop_u(intn n, const hsize_t *v) { if (!v) return TRUE; @@ -138,7 +138,7 @@ H5V_vector_zerop_u(intn n, const hsize_t *v) * *------------------------------------------------------------------------- */ -static __inline__ hbool_t __unused__ +static inline hbool_t __unused__ H5V_vector_zerop_s(intn n, const hssize_t *v) { if (!v) return TRUE; @@ -167,7 +167,7 @@ H5V_vector_zerop_s(intn n, const hssize_t *v) * *------------------------------------------------------------------------- */ -static __inline__ intn __unused__ +static inline intn __unused__ H5V_vector_cmp_u (intn n, const hsize_t *v1, const hsize_t *v2) { if (v1 == v2) return 0; @@ -200,7 +200,7 @@ H5V_vector_cmp_u (intn n, const hsize_t *v1, const hsize_t *v2) * *------------------------------------------------------------------------- */ -static __inline__ intn __unused__ +static inline intn __unused__ H5V_vector_cmp_s (intn n, const hssize_t *v1, const hssize_t *v2) { if (v1 == v2) return 0; @@ -228,7 +228,7 @@ H5V_vector_cmp_s (intn n, const hssize_t *v1, const hssize_t *v2) * *------------------------------------------------------------------------- */ -static __inline__ void __unused__ +static inline void __unused__ H5V_vector_inc(intn n, hsize_t *v1, const hsize_t *v2) { while (n--) *v1++ += *v2++; |