diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-06-18 23:15:53 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-06-18 23:15:53 (GMT) |
commit | 52ac5273d5dddb7076e6c75d2e9f538f0d77aa1d (patch) | |
tree | 6936eb62fbc641e43f94fe3ecd1752a24508a594 /src/H5B.c | |
parent | d41b9fffdfca2e97c36bc0ad0899fbb7b055f926 (diff) | |
download | hdf5-52ac5273d5dddb7076e6c75d2e9f538f0d77aa1d.zip hdf5-52ac5273d5dddb7076e6c75d2e9f538f0d77aa1d.tar.gz hdf5-52ac5273d5dddb7076e6c75d2e9f538f0d77aa1d.tar.bz2 |
[svn-r4013] Purpose:
POSIX Removal
Description:
Removed calls to POSIX functions and replaced them with the HD*
equivalents.
Solution:
Did just that. Also had to create two new HD* macros, the
gettimeofday() and getrusage()
Platforms tested:
Linux
Diffstat (limited to 'src/H5B.c')
-rw-r--r-- | src/H5B.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1585,8 +1585,8 @@ H5B_iterate (H5F_t *f, const H5B_class_t *type, haddr_t addr, void *udata) } for (i=0; i<bt->nchildren+1; i++) { if (!bt->key[i].nkey) H5B_decode_key(f, bt, i); - memcpy(key+i*type->sizeof_nkey, bt->key[i].nkey, - type->sizeof_nkey); + HDmemcpy(key+i*type->sizeof_nkey, bt->key[i].nkey, + type->sizeof_nkey); } next_addr = bt->right; nchildren = bt->nchildren; |