#include #if __riscv_flen >= 32 float sqrtf(float x) { __asm__ ("fsqrt.s %0, %1" : "=f"(x) : "f"(x)); return x; } #else #include "../sqrtf.c" #endif