root/src/system/libroot/posix/musl/math/riscv64/sqrtf.c
#include <math.h>

#if __riscv_flen >= 32

float sqrtf(float x)
{
        __asm__ ("fsqrt.s %0, %1" : "=f"(x) : "f"(x));
        return x;
}

#else

#include "../sqrtf.c"

#endif