summaryrefslogtreecommitdiff
path: root/src/linux/sincosl.c
blob: 2bfc486267d3b55c064f3b8e10d0edcfab370e69 (plain) (blame)
1
2
3
4
5
6
7
8
#define _GNU_SOURCE
#include <math.h>

void sincosl(long double t, long double *y, long double *x)
{
	*y = sinl(t);
	*x = cosl(t);
}