mirror of
https://github.com/glest/glest-source.git
synced 2025-08-10 18:34:05 +02:00
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:
10
source/shared_lib/sources/streflop/libm/w_expf.c
Normal file
10
source/shared_lib/sources/streflop/libm/w_expf.c
Normal 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);
|
||||
}
|
Reference in New Issue
Block a user