Mercurial > repos > aaronquinlan > multi_intersect
comparison BEDTools-Version-2.14.3/src/utils/Fasta/LargeFileSupport.h @ 1:bec36315bd12 default tip
Deleted selected files
author | aaronquinlan |
---|---|
date | Sat, 19 Nov 2011 14:17:03 -0500 |
parents | dfcd8b6c1bda |
children |
comparison
equal
deleted
inserted
replaced
0:dfcd8b6c1bda | 1:bec36315bd12 |
---|---|
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 |