prevent CNAME/PTR parsing from reading data past the response end
[musl] / src / math / aarch64 / fmin.c
1 #include <math.h>
2
3 double fmin(double x, double y)
4 {
5         __asm__ ("fminnm %d0, %d1, %d2" : "=w"(x) : "w"(x), "w"(y));
6         return x;
7 }