Avoid offset_t conflict on Illumos

Taken from NetBSD patch-taglib_toolkit_taglib.h.
This commit is contained in:
Urs Fleisch 2024-03-24 17:25:39 +01:00
parent ddf7523075
commit 728a3309cf

View File

@ -60,7 +60,7 @@ namespace TagLib {
// In Win32, always 64bit. Otherwise, equivalent to off_t.
#ifdef _WIN32
using offset_t = long long;
#else
#elif !defined(__illumos__)
using offset_t = off_t;
#endif