Added streflop (standalone reproducible floating point library) layer to mega-glest (initial checkin only) and changed a few areas to use the library in linux

This commit is contained in:
Mark Vejvoda
2010-04-24 03:57:38 +00:00
parent a50b89e9cc
commit 2bfaa4d1d7
129 changed files with 15486 additions and 79 deletions

View File

@@ -0,0 +1,10 @@
/* The original libm wrapper may call the double implementation
and declares double constants.
This wrapper purely wraps the float version
*/
#include "math_private.h"
float __expf(float x) {
return __ieee754_expf(x);
}