bits/syscall.h: add landlock syscalls from linux v5.13
[musl.git] / src / math / x86_64 / sqrtl.c
blob864cfcc4f66eb5c0b8c87f38299fc727eb6e7eac
1 #include <math.h>
3 long double sqrtl(long double x)
5 __asm__ ("fsqrt" : "+t"(x));
6 return x;