easy peasy

This commit is contained in:
Kat R. 2022-10-27 23:51:48 -05:00
parent e813668878
commit 4bca9fd69d
1 changed files with 5 additions and 0 deletions

5
math/sin.c Normal file
View File

@ -0,0 +1,5 @@
#include <math.h>
double sin(double x) {
return cos(x - M_PI_2);
}