File tree Expand file tree Collapse file tree 3 files changed +4
-16
lines changed Expand file tree Collapse file tree 3 files changed +4
-16
lines changed Original file line number Diff line number Diff line change 1616 */
1717
1818#include "mthdecls.h"
19-
20- extern float roundf (float );
19+ #include <math.h>
2120
2221float
2322__mth_i_around (float x )
2423{
25- return roundf (x );
24+ return rintf (x );
2625}
Original file line number Diff line number Diff line change 1616 */
1717
1818#include "mthdecls.h"
19-
20- extern double round (double );
19+ #include <math.h>
2120
2221double
2322__mth_i_dround (double x )
2423{
25- return round (x );
24+ return rint (x );
2625}
Original file line number Diff line number Diff line change @@ -359,16 +359,6 @@ nearbyintf(float x)
359359 return __nearbyintf (x );
360360}
361361double
362- rint (double x )
363- {
364- return __nearbyint (x );
365- }
366- float
367- rintf (float x )
368- {
369- return __nearbyintf (x );
370- }
371- double
372362remainder (double x , double y )
373363{
374364 return __remainder (x , y );
You can’t perform that action at this time.
0 commit comments