diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-07-03 16:27:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-07-03 16:27:38 (GMT) |
commit | 2457f15317b0a1968944b1d4ed0c29bbca5b3823 (patch) | |
tree | 755890e39c9a30a17cf8fff247ba6ed59744fe38 | |
parent | f9f0de7aa0529a0467e79b4521013328fab1e3e7 (diff) | |
download | hdf5-2457f15317b0a1968944b1d4ed0c29bbca5b3823.zip hdf5-2457f15317b0a1968944b1d4ed0c29bbca5b3823.tar.gz hdf5-2457f15317b0a1968944b1d4ed0c29bbca5b3823.tar.bz2 |
[svn-r4102] Purpose:
Code cleanup
Description:
File driver macros were defined in this file, instead of the file driver
source file.
Solution:
Removed redundant file driver information, which is already in each file
driver source file.
Platforms tested:
FreeBSD 4.3 (hawkwind)
-rw-r--r-- | src/H5private.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/H5private.h b/src/H5private.h index 415c919..5b3a6e7 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -170,36 +170,6 @@ MS doesn't recognize it yet (as of April 2001) #endif /*WIN32*/ -/* - * 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(). - * - * adding for windows NT file system support. - */ - -#ifdef H5_HAVE_LSEEK64 -# define file_offset_t off64_t -# define file_seek lseek64 -#elif defined (WIN32) -# ifdef __MWERKS__ -# define file_offset_t off_t -# define file_seek lseek -# else /*MSVC*/ -# define file_offset_t __int64 -# define file_seek _lseeki64 -# endif -#else -# define file_offset_t off_t -# define file_seek lseek -#endif - #ifndef F_OK # define F_OK 00 # define W_OK 02 |