diff --git a/src/math.c b/src/math.c index 848fadc..0c14e30 100644 --- a/src/math.c +++ b/src/math.c @@ -130,13 +130,13 @@ float tan(float x) { - return sin(x) / cos(x) + return sin(x) / cos(x); } float cotan(float x) { - return cos(x) / sin(x) + return cos(x) / sin(x); } #endif