summaryrefslogtreecommitdiffstats
path: root/src/H5private.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-03-16 18:49:29 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-03-16 18:49:29 (GMT)
commit58db790d2598cf73b75c91deb02ae5b2cdd2f223 (patch)
tree0b282e983a496b077ca0a2aa6a06048791c4e3aa /src/H5private.h
parent92e8a4d3655915c2ed5de02aa345ffdb64600805 (diff)
downloadhdf5-58db790d2598cf73b75c91deb02ae5b2cdd2f223.zip
hdf5-58db790d2598cf73b75c91deb02ae5b2cdd2f223.tar.gz
hdf5-58db790d2598cf73b75c91deb02ae5b2cdd2f223.tar.bz2
[svn-r12104] Purpose:
Code cleanup Description: Re-alphabetize POSIX macros. Platforms tested: None, just eyeballed, too minor.
Diffstat (limited to 'src/H5private.h')
-rw-r--r--src/H5private.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5private.h b/src/H5private.h
index 294f3ff..96e91eb 100644
--- a/src/H5private.h
+++ b/src/H5private.h
@@ -774,9 +774,7 @@ typedef off_t h5_stat_size_t;
#define HDqsort(M,N,Z,F) qsort(M,N,Z,F)
#define HDraise(N) raise(N)
H5_DLL int HDrand(void);
-H5_DLL void HDsrand(unsigned int seed);
#define HDrandom() HDrand()
-#define HDsrandom(S) HDsrand(S)
#define HDread(F,M,Z) read(F,M,Z)
#define HDreaddir(D) readdir(D)
#define HDrealloc(M,Z) realloc(M,Z)
@@ -820,6 +818,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 */