1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00
Files
glibc/sysdeps/ieee754/ldbl-opt/nldbl-asinpi.c
Joseph Myers f962932206 Implement C23 asinpi
C23 adds various <math.h> function families originally defined in TS
18661-4.  Add the asinpi functions (asin(x)/pi).

Tested for x86_64 and x86, and with build-many-glibcs.py.
2024-12-10 20:42:20 +00:00

9 lines
95 B
C

#include "nldbl-compat.h"
double
attribute_hidden
asinpil (double x)
{
return asinpi (x);
}