diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2001-06-07 16:03:02 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2001-06-07 16:03:02 (GMT) |
commit | 504bc34f6015d2c4df03b024c95cdbbab71cbd5f (patch) | |
tree | acb62b5417ce2d5ef9f1209a5a7ac7945eea7e45 /src/H5FDdpss.c | |
parent | 80737b93ef4425801da0f24b592e9b1bb3e3bca9 (diff) | |
download | hdf5-504bc34f6015d2c4df03b024c95cdbbab71cbd5f.zip hdf5-504bc34f6015d2c4df03b024c95cdbbab71cbd5f.tar.gz hdf5-504bc34f6015d2c4df03b024c95cdbbab71cbd5f.tar.bz2 |
[svn-r3974] code warrior port
Diffstat (limited to 'src/H5FDdpss.c')
-rw-r--r-- | src/H5FDdpss.c | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/src/H5FDdpss.c b/src/H5FDdpss.c index cc378d1..3fde293 100644 --- a/src/H5FDdpss.c +++ b/src/H5FDdpss.c @@ -51,26 +51,7 @@ typedef struct H5FD_dpss_t { haddr_t eof; /* end of file; current file size */ } H5FD_dpss_t; - -/*** FIXME: is this really needed here ? ***/ -/* - * This driver supports systems that have the lseek64() function by defining - * some macros here so we don't have to have conditional compilations later - * throughout the code. - * - * file_offset_t: The datatype for file offsets, the second argument of - * the lseek() or lseek64() call. - * - * file_seek: The function which adjusts the current file position, - * either lseek() or lseek64(). - */ -#ifdef H5_HAVE_LSEEK64 -# define file_offset_t off64_t -# define file_seek lseek64 -#else -# define file_offset_t off_t -# define file_seek lseek -#endif + /* * These macros check for overflow of various quantities. These macros |