easy peasy
This commit is contained in:
parent
e813668878
commit
4bca9fd69d
1 changed files with 5 additions and 0 deletions
5
math/sin.c
Normal file
5
math/sin.c
Normal file
|
@ -0,0 +1,5 @@
|
|||
#include <math.h>
|
||||
|
||||
double sin(double x) {
|
||||
return cos(x - M_PI_2);
|
||||
}
|
Loading…
Reference in a new issue