glibc/sysdeps/ieee754/ldbl-opt/nldbl-acospi.c
Joseph Myers 28d102d15c Implement C23 acospi
C23 adds various <math.h> function families originally defined in TS
18661-4.  Add the acospi functions (acos(x)/pi).

Tested for x86_64 and x86, and with build-many-glibcs.py.
2024-12-09 23:01:29 +00:00

9 lines
95 B
C

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