Mercurial > repos > aaronquinlan > multi_intersect
diff BEDTools-Version-2.14.3/src/utils/Fasta/LargeFileSupport.h @ 0:dfcd8b6c1bda
Uploaded
author | aaronquinlan |
---|---|
date | Thu, 03 Nov 2011 10:25:04 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/BEDTools-Version-2.14.3/src/utils/Fasta/LargeFileSupport.h Thu Nov 03 10:25:04 2011 -0400 @@ -0,0 +1,13 @@ +#pragma once + +#define _FILE_OFFSET_BITS 64 + +#ifdef WIN32 +#define ftell64(a) _ftelli64(a) +#define fseek64(a,b,c) _fseeki64(a,b,c) +typedef __int64_t off_type; +#else +#define ftell64(a) ftello(a) +#define fseek64(a,b,c) fseeko(a,b,c) +typedef off_t off_type; +#endif