diff --git a/src/strict_fstream.hpp b/src/strict_fstream.hpp index 016f54f..7cc2926 100755 --- a/src/strict_fstream.hpp +++ b/src/strict_fstream.hpp @@ -64,7 +64,7 @@ static std::string strerror() } else { return "Unknown error (" + std::to_string(err_num) + ")"; } -#elif ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && ! _GNU_SOURCE) || defined(__APPLE__) || defined(__MUSL__) +#elif ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && ! _GNU_SOURCE) || defined(__APPLE__) || defined(__MUSL__) || defined(__FreeBSD__) // XSI-compliant strerror_r() const int err_num = errno; // See above if (strerror_r(err_num, buff.data(), buff.size()) == 0) {