mirror of
https://github.com/glest/glest-source.git
synced 2025-09-25 23:19:07 +02:00
11 lines
232 B
C
11 lines
232 B
C
/* 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);
|
|
}
|