LibC: Remove i686 support

This commit is contained in:
Liav A 2022-10-04 02:52:43 +03:00 committed by Andreas Kling
commit 92da98822a
Notes: sideshowbarker 2024-07-17 06:51:48 +09:00
11 changed files with 9 additions and 169 deletions

View file

@ -633,7 +633,7 @@ long double frexpl(long double x, int* exp) NOEXCEPT
return scalbnl(x, -(*exp));
}
#if !(ARCH(I386) || ARCH(X86_64))
#if !(ARCH(X86_64))
double round(double value) NOEXCEPT
{