hjl / source-git / glibc

Forked from source-git/glibc 3 years ago
Clone

Blame sysdeps/ieee754/ldbl-opt/nldbl-sincos.c

Packit 6c4009
#include "nldbl-compat.h"
Packit 6c4009
Packit 6c4009
void
Packit 6c4009
attribute_hidden
Packit 6c4009
sincosl (double x, double *sinx, double *cosx)
Packit 6c4009
{
Packit 6c4009
  sincos (x, sinx, cosx);
Packit 6c4009
}