diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-07-23 01:55:12 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-07-23 01:55:12 (GMT) |
commit | 34bd25f361f81efc396314528f1824fe63af494e (patch) | |
tree | 0fa0ec3c102abac15cd4f1012b99941fdf703009 /perform | |
parent | 138d4f52544af96770b4a5f151a7b64f2c4dc922 (diff) | |
download | hdf5-34bd25f361f81efc396314528f1824fe63af494e.zip hdf5-34bd25f361f81efc396314528f1824fe63af494e.tar.gz hdf5-34bd25f361f81efc396314528f1824fe63af494e.tar.bz2 |
[svn-r11144] Purpose:
New port
Description:
Elena asked me to check in her NEC SX-6 work, so here it is! :-)
Platforms tested:
FreeBSD 4.11 (sleipnir)
NEC SX-6 (by Elena)
Diffstat (limited to 'perform')
-rw-r--r-- | perform/zip_perf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perform/zip_perf.c b/perform/zip_perf.c index 321d6e6..55d19e6 100644 --- a/perform/zip_perf.c +++ b/perform/zip_perf.c @@ -35,6 +35,7 @@ /* our header files */ #include "hdf5.h" +#include "H5private.h" #include "h5tools_utils.h" #ifdef H5_HAVE_FILTER_DEFLATE @@ -454,7 +455,7 @@ fill_with_random_data(Bytef *src, uLongf src_len) printf("Using random() for random data\n"); for (u = 0; u < src_len; ++u) - src[u] = (Bytef)(0xff & random()); + src[u] = (Bytef)(0xff & HDrandom()); } if (compress_percent) { |