mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
164 B
15 lines
164 B
#include <math.h>
|
|
|
|
#if __riscv_flen >= 32
|
|
|
|
float fabsf(float x)
|
|
{
|
|
__asm__ ("fabs.s %0, %1" : "=f"(x) : "f"(x));
|
|
return x;
|
|
}
|
|
|
|
#else
|
|
|
|
#include "../fabsf.c"
|
|
|
|
#endif
|
|
|