diff --git a/AK/FixedPoint.h b/AK/FixedPoint.h index d80df7d3fd..83605364d9 100644 --- a/AK/FixedPoint.h +++ b/AK/FixedPoint.h @@ -16,6 +16,11 @@ # include #endif +// Solaris' definition of signbit in math_c99.h conflicts with our implementation. +#ifdef AK_OS_SOLARIS +# undef signbit +#endif + namespace AK { // FIXME: this always uses round to nearest break-tie to even