summaryrefslogtreecommitdiffstats
path: root/src/H5FDgass.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2002-04-19 07:20:10 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2002-04-19 07:20:10 (GMT)
commitc6d695526c58f3f3906129e833883a183fb3cae6 (patch)
treecbdf2e899b6127be8d841942c2f18940387033b2 /src/H5FDgass.c
parent0dfa9a8549cc4f8c40fd84589fe74c1e7253f1ba (diff)
downloadhdf5-c6d695526c58f3f3906129e833883a183fb3cae6.zip
hdf5-c6d695526c58f3f3906129e833883a183fb3cae6.tar.gz
hdf5-c6d695526c58f3f3906129e833883a183fb3cae6.tar.bz2
[svn-r5204] Purpose:
Code cleanup Description: Platform dependent code related to the struct stat and fstat calls polluted source codes. Hard to maintain. Solution: Platform dependent code are moved to H5private.h and then internal code can #include H5private.h. Repeat those macro definition for the stdio and multi drivers since they area examples for writing a virtual file driver. They must not use any internal code. Platforms tested: eirene (parallel), modi4 (serial including gass driver.)
Diffstat (limited to 'src/H5FDgass.c')
-rw-r--r--src/H5FDgass.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/H5FDgass.c b/src/H5FDgass.c
index 7da8855..26d40c0 100644
--- a/src/H5FDgass.c
+++ b/src/H5FDgass.c
@@ -307,11 +307,7 @@ H5FD_gass_open(const char *name, unsigned flags, hid_t fapl_id,
H5FD_gass_t *file=NULL;
const H5FD_gass_fapl_t *fa=NULL;
H5FD_gass_fapl_t _fa;
-#ifdef WIN32
- struct _stati64 sb;
-#else
- struct stat sb;
-#endif
+ h5_stat_t sb;
char *filename = (char *) H5MM_malloc(80 * sizeof(char));
FUNC_ENTER(H5FD_gass_open, NULL);