stmhal: #undef log2f if it's defined.

travis
Damien George 2014-04-03 21:16:37 +01:00
parent 6693e6c506
commit aba9f51fef
1 changed files with 4 additions and 0 deletions

View File

@ -64,6 +64,10 @@ float sqrtf(float x) {
// TODO we need import these functions from some library (eg musl or newlib)
float powf(float x, float y) { return 0.0; }
float logf(float x) { return 0.0; }
// some compilers define log2f in terms of logf
#ifdef log2f
#undef log2f
#endif
float log2f(float x) { return 0.0; }
float log10f(float x) { return 0.0; }
float tanhf(float x) { return 0.0; }