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-atan2pi.c
Joseph Myers 3374de9038 Implement C23 atan2pi
C23 adds various <math.h> function families originally defined in TS
18661-4.  Add the atan2pi functions (atan2(y,x)/pi).

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

9 lines
110 B
C

#include "nldbl-compat.h"
double
attribute_hidden
atan2pil (double x, double y)
{
return atan2pi (x, y);
}