lib, libm: Add back dummy definition of tanf.
This commit is contained in:
parent
8707ea3421
commit
4d3fc46326
|
@ -116,6 +116,7 @@ float tanhf(float x) { return sinhf(x) / coshf(x); }
|
|||
float acoshf(float x) { return 0.0; }
|
||||
float asinhf(float x) { return 0.0; }
|
||||
float atanhf(float x) { return 0.0; }
|
||||
float tanf(float x) { return 0.0; }
|
||||
float acosf(float x) { return 0.0; }
|
||||
float asinf(float x) { return 0.0; }
|
||||
float fmodf(float x, float y) { return 0.0; }
|
||||
|
|
Loading…
Reference in New Issue