1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-03 11:29:42 +00:00
cc65/libsrc/float/softmath/softmath-sinf.c
2023-08-31 23:07:15 +02:00

7 lines
79 B
C

#include <math.h>
float sinf(float x) {
return cosf(x - (M_PI / 2.0));
}