Mercurial > repos > aaronquinlan > multi_intersect
annotate 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 |
rev | line source |
---|---|
0 | 1 #pragma once |
2 | |
3 #define _FILE_OFFSET_BITS 64 | |
4 | |
5 #ifdef WIN32 | |
6 #define ftell64(a) _ftelli64(a) | |
7 #define fseek64(a,b,c) _fseeki64(a,b,c) | |
8 typedef __int64_t off_type; | |
9 #else | |
10 #define ftell64(a) ftello(a) | |
11 #define fseek64(a,b,c) fseeko(a,b,c) | |
12 typedef off_t off_type; | |
13 #endif |