diff 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
line wrap: on
line diff
--- a/BEDTools-Version-2.14.3/src/utils/Fasta/LargeFileSupport.h	Thu Nov 03 10:25:04 2011 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-#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