Commit dcf5715d authored by Guido van Rossum's avatar Guido van Rossum

Tsk, tsk, tsk. Treat FreeBSD the same as the other BSDs when defining

a fallback for TELL64.  Fixes SF Bug #128119.
parent a9586c72
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
/* define the appropriate 64-bit capable tell() function */ /* define the appropriate 64-bit capable tell() function */
#if defined(MS_WIN64) #if defined(MS_WIN64)
#define TELL64 _telli64 #define TELL64 _telli64
#elif defined(__NetBSD__) || defined(__OpenBSD__) || defined(_HAVE_BSDI) || defined(__APPLE__) #elif defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(_HAVE_BSDI) || defined(__APPLE__)
/* NOTE: this is only used on older /* NOTE: this is only used on older
NetBSD prior to f*o() funcions */ NetBSD prior to f*o() funcions */
#define TELL64(fd) lseek((fd),0,SEEK_CUR) #define TELL64(fd) lseek((fd),0,SEEK_CUR)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment