Skip to content

Commit

Permalink
Do not use _lseeki64 under Borland C++ [Truta].
Browse files Browse the repository at this point in the history
  • Loading branch information
madler committed Dec 19, 2011
1 parent 3d85f02 commit e7289ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gzlib.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include "gzguts.h"

#if defined(_WIN32)
#if defined(_WIN32) && !defined(__BORLANDC__)
# define LSEEK _lseeki64
#else
#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0
Expand Down

0 comments on commit e7289ed

Please sign in to comment.