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

void sincosf(float t, float *y, float *x)
{
	*y = sinf(t);
	*x = cosf(t);
}