diff --git a/reactos/lib/3rdparty/libsamplerate/float_cast.h b/reactos/lib/3rdparty/libsamplerate/float_cast.h index 0dcceb3f530..17e93311c65 100644 --- a/reactos/lib/3rdparty/libsamplerate/float_cast.h +++ b/reactos/lib/3rdparty/libsamplerate/float_cast.h @@ -183,23 +183,6 @@ return intgr ; } -#else - extern __inline long int - lrint (double flt) - { - int intgr ; - __asm__ __volatile__ ("fldl %1; fistpl %0;" : "=m" (intgr) : "m" (flt)); - return intgr ; - } - - extern __inline long int - lrintf (float flt) - { - int intgr ; - - __asm__ __volatile__ ("flds %1; fistpl %0;" : "=m" (intgr) : "m" (flt)); - return intgr ; - } #endif #elif (defined (__MWERKS__) && defined (macintosh))