summaryrefslogtreecommitdiffstats
path: root/src/H5private.h
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-06-19 21:49:01 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-06-19 21:49:01 (GMT)
commit1fdcafdc893c22fd61b85b22c4b53c76a9090fd1 (patch)
tree5593a43ac8c9e363bdb31b45b7f159da9e42a4e1 /src/H5private.h
parent09676ded1f6e9480e5154c8dcdf6a0226755d28b (diff)
downloadhdf5-1fdcafdc893c22fd61b85b22c4b53c76a9090fd1.zip
hdf5-1fdcafdc893c22fd61b85b22c4b53c76a9090fd1.tar.gz
hdf5-1fdcafdc893c22fd61b85b22c4b53c76a9090fd1.tar.bz2
[svn-r4022] Purpose:
Code Cleanup Description: Changed POSIX function calls to the HD* way of doing things. Checked with checkposix and tested on Linux. Platforms tested: Linux
Diffstat (limited to 'src/H5private.h')
-rw-r--r--src/H5private.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5private.h b/src/H5private.h
index 7bc4083..12bca56 100644
--- a/src/H5private.h
+++ b/src/H5private.h
@@ -506,6 +506,7 @@ __DLL__ void H5_bandwidth(char *buf/*out*/, double nbytes, double nseconds);
#define HDatof(S) atof(S)
#define HDatoi(S) atoi(S)
#define HDatol(S) atol(S)
+#define HDBSDgettimeofday(S,P) BSDgettimeofday(S,P)
#define HDbsearch(K,B,N,Z,F) bsearch(K,B,N,Z,F)
#define HDcalloc(N,Z) calloc(N,Z)
#define HDceil(X) ceil(X)