From 422101ea86eaa4293b9648482b3292bfb7ef6170 Mon Sep 17 00:00:00 2001 From: Kat Richey Date: Wed, 16 Nov 2022 23:26:09 -0600 Subject: [PATCH] I forgot a semicolon... --- math/tan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/tan.c b/math/tan.c index 3f1b86f..a569eb9 100644 --- a/math/tan.c +++ b/math/tan.c @@ -1,5 +1,5 @@ #include double tan(double x) { - return (cos(x - M_PI_2) / cos(x)) + return (cos(x - M_PI_2) / cos(x)); } \ No newline at end of file