dc8971488e
* Makefile.in: Ditto. Merge in mingwex branch.
8 lines
126 B
C
8 lines
126 B
C
#include <math.h>
|
|
|
|
float rintf (float x){
|
|
float retval;
|
|
__asm__ ("frndint;": "=t" (retval) : "0" (x));
|
|
return retval;
|
|
}
|