root/src/system/libroot/posix/musl/math/arm64/fmin.c
#include <math.h>

double fmin(double x, double y)
{
        __asm__ ("fminnm %d0, %d1, %d2" : "=w"(x) : "w"(x), "w"(y));
        return x;
}