mirror of
https://github.com/fluencelabs/musl
synced 2025-06-01 09:01:40 +00:00
9 lines
115 B
C
9 lines
115 B
C
|
#define _GNU_SOURCE
|
||
|
#include <math.h>
|
||
|
|
||
|
void sincos(double t, double *y, double *x)
|
||
|
{
|
||
|
*y = sin(t);
|
||
|
*x = cos(t);
|
||
|
}
|