w_expf.cpp
来自「这是整套横扫千军3D版游戏的源码」· C++ 代码 · 共 14 行
CPP
14 行
/* See the import.pl script for potential modifications */
/* The original libm wrapper may call the Double implementation
and declares Double constants.
This wrapper purely wraps the Simple version
*/
#include "math_private.h"
namespace streflop_libm {
Simple __expf(Simple x) {
return __ieee754_expf(x);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?