Mercurial > repos > aaronquinlan > multi_intersect
view BEDTools-Version-2.14.3/src/nucBed/LargeFileSupport.h @ 0:dfcd8b6c1bda
Uploaded
author | aaronquinlan |
---|---|
date | Thu, 03 Nov 2011 10:25:04 -0400 |
parents | |
children |
line wrap: on
line source
#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