diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-04 08:48:23 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-04 08:48:23 +0000 |
commit | b1fa75dfe08461c0f1349093266bcdc852bcd713 (patch) | |
tree | f9d3d7950c6e72d1c0d05d6ea4f0a6dff2346ab9 /src/proxy/proxytrack.c | |
parent | 4da59a639962cecf3599f19813b00f2ab065e089 (diff) |
Big cleanup in string primitives and abort functions
Diffstat (limited to 'src/proxy/proxytrack.c')
-rw-r--r-- | src/proxy/proxytrack.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/proxy/proxytrack.c b/src/proxy/proxytrack.c index e495f73..dabb761 100644 --- a/src/proxy/proxytrack.c +++ b/src/proxy/proxytrack.c @@ -103,6 +103,7 @@ Remark: If no cache newer than the added one is found, all entries can be added */ /* HTTrack definitions */ +#define HTSSAFE_ABORT_FUNCTION(A,B,C) #include "htsbase.h" #include "htsnet.h" #include "htslib.h" @@ -145,8 +146,6 @@ Remark: If no cache newer than the added one is found, all entries can be added #endif /* External references */ -// htsErrorCallback htsCallbackErr = NULL; -int htsMemoryFastXfr = 1; /* fast xfr by default */ void abortLog__fnc(char *msg, char *file, int line); void abortLog__fnc(char *msg, char *file, int line) { FILE *fp = fopen("CRASH.TXT", "wb"); @@ -166,7 +165,6 @@ void abortLog__fnc(char *msg, char *file, int line) { } } -// HTSEXT_API t_abortLog abortLog__ = abortLog__fnc; /* avoid VC++ inlining */ #define webhttrack_lock(A) do{}while(0) /* Static definitions */ |