I forgot a semicolon...

This commit is contained in:
Kat R. 2022-11-16 23:26:09 -06:00
parent 6e8348fca6
commit 422101ea86
1 changed files with 1 additions and 1 deletions

View File

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