mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-31 23:11:09 +00:00
f9e90e4b4c
C23 adds various <math.h> function families originally defined in TS 18661-4. Add the tanpi functions (tan(pi*x)). Tested for x86_64 and x86, and with build-many-glibcs.py.
9 lines
93 B
C
9 lines
93 B
C
#include "nldbl-compat.h"
|
|
|
|
double
|
|
attribute_hidden
|
|
tanpil (double x)
|
|
{
|
|
return tanpi (x);
|
|
}
|