I forgot a semicolon...
This commit is contained in:
parent
6e8348fca6
commit
422101ea86
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
double tan(double x) {
|
double tan(double x) {
|
||||||
return (cos(x - M_PI_2) / cos(x))
|
return (cos(x - M_PI_2) / cos(x));
|
||||||
}
|
}
|
Loading…
Reference in a new issue