Fixed a compiler warning on BSD Unix.

This commit is contained in:
Leon Styhre 2021-10-06 18:47:30 +02:00
parent 08888e00af
commit 019c764d93

View file

@ -8,7 +8,7 @@
// remove files etc.
//
#if !defined(__APPLE__)
#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
#define _FILE_OFFSET_BITS 64
#endif