Index: libm/machine/i386/f_llrint.c =================================================================== RCS file: /cvs/src/src/newlib/libm/machine/i386/f_llrint.c,v retrieving revision 1.1 diff -p -u -r1.1 f_llrint.c --- libm/machine/i386/f_llrint.c 19 Dec 2007 22:20:25 -0000 1.1 +++ libm/machine/i386/f_llrint.c 11 May 2009 16:34:05 -0000 @@ -43,8 +43,9 @@ These functions return the rounded integ PORTABILITY <>, <> and <> are ANSI. -<>, <> and <> are only available on i386 platforms when -hardware floating point support is available and when compiling with GCC. +The fast math versions of <>, <> and <> are only +available on i386 platforms when hardware floating point support is available +and when compiling with GCC. */ @@ -65,10 +66,5 @@ long long int _f_llrint (double x) return _result; } -/* For now, we only have the fast math version. */ -long long int llrint (double x) { - return _f_llrint(x); -} - #endif /* !_SOFT_FLOAT */ #endif /* __GNUC__ */ Index: libm/machine/i386/f_llrintf.c =================================================================== RCS file: /cvs/src/src/newlib/libm/machine/i386/f_llrintf.c,v retrieving revision 1.1 diff -p -u -r1.1 f_llrintf.c --- libm/machine/i386/f_llrintf.c 19 Dec 2007 22:20:25 -0000 1.1 +++ libm/machine/i386/f_llrintf.c 11 May 2009 16:34:05 -0000 @@ -29,10 +29,5 @@ long long int _f_llrintf (float x) return _result; } -/* For now, we only have the fast math version. */ -long long int llrintf (float x) { - return _f_llrintf(x); -} - #endif /* !_SOFT_FLOAT */ #endif /* __GNUC__ */