lib/libm: Add frexp and modf functions; use in stmhal; add tests.

Addresses issue #1081.
This commit is contained in:
Damien George
2015-01-22 13:48:29 +00:00
parent bd9c1ad601
commit 6d1f5070ce
5 changed files with 164 additions and 3 deletions

View File

@@ -122,8 +122,6 @@ float tgammaf(float x) { return 0.0; }
float lgammaf(float x) { return 0.0; }
float erff(float x) { return 0.0; }
float erfcf(float x) { return 0.0; }
float modff(float x, float *y) { return 0.0; }
float frexpf(float x, int *exp) { return 0.0; }
float ldexpf(float x, int exp) { return 0.0; }
/*****************************************************************************/