/ components / kendryte_sdk / src / sipeed_math.c
sipeed_math.c
1  #include "math.h"
2  
3  inline float roundf(float x)
4  {
5      return (float)((int)(x));
6  }