diff options
author | Leon Arber <larber@ncsa.uiuc.edu> | 2006-03-17 17:24:35 (GMT) |
---|---|---|
committer | Leon Arber <larber@ncsa.uiuc.edu> | 2006-03-17 17:24:35 (GMT) |
commit | 11a590c02b4d53ed926e2e86406f739fa846decb (patch) | |
tree | 2b26b95311403afe01305e46ea26f7407c4fd57d /src/H5private.h | |
parent | ddf2b95cbdff88814192a3980c79ab27bb824a19 (diff) | |
download | hdf5-11a590c02b4d53ed926e2e86406f739fa846decb.zip hdf5-11a590c02b4d53ed926e2e86406f739fa846decb.tar.gz hdf5-11a590c02b4d53ed926e2e86406f739fa846decb.tar.bz2 |
[svn-r12113] Purpose:
Bug fix
Description:
There was a duplicate definition for HDsrandom and HDsrand left over in H5private.h
Solution:
Removed the two duplicate definitions.
Platforms tested:
heping (minor change)
Misc. update:
Diffstat (limited to 'src/H5private.h')
-rw-r--r-- | src/H5private.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/H5private.h b/src/H5private.h index b89967d..01b41db 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -834,11 +834,8 @@ H5_DLL void HDsrand(unsigned int seed); #endif /* sprintf() variable arguments */ #define HDsqrt(X) sqrt(X) -H5_DLL void HDsrand(unsigned int seed); -#define HDsrandom(S) HDsrand(S) /* sscanf() variable arguments */ - #ifdef WIN32 #ifdef __MWERKS__ #define HDstat(S,B) stat(S,B) |