aboutsummaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
authorAnthony Wang2021-12-08 12:32:19 -0600
committerAnthony Wang2021-12-08 12:32:19 -0600
commite339bd98fd86a875bf797106349ee312773b60b3 (patch)
tree085279be15ebd6937a285a478b7c2ccc61ebdb5f /test.c
parent59698d61ab48784d33798a7c8a32daee17940380 (diff)
Add run script
Diffstat (limited to 'test.c')
-rw-r--r--test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.c b/test.c
index 5a7edc4..5a48eba 100644
--- a/test.c
+++ b/test.c
@@ -2,7 +2,7 @@
#include <stdio.h>
-inline int gcd(int a, int b)
+int gcd(int a, int b)
{
if (b > 0) return gcd(b, a % b);
else return a;