mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
16 lines
164 B
C
Vendored
16 lines
164 B
C
Vendored
#include <math.h>
|
|
|
|
#if __riscv_flen >= 64
|
|
|
|
double fabs(double x)
|
|
{
|
|
__asm__ ("fabs.d %0, %1" : "=f"(x) : "f"(x));
|
|
return x;
|
|
}
|
|
|
|
#else
|
|
|
|
#include "../fabs.c"
|
|
|
|
#endif
|