bits/syscall.h: add landlock syscalls from linux v5.13
[musl.git] / src / math / x86_64 / sqrt.c
blob657e09e3b4d44b1cc12bf3300d7e5c5dc06c11ec
1 #include <math.h>
3 double sqrt(double x)
5 __asm__ ("sqrtsd %1, %0" : "=x"(x) : "x"(x));
6 return x;