fix number tokens and limits
This commit is contained in:
@@ -65,7 +65,7 @@ int gcd_int(int a, int b)
|
||||
b = a % b;
|
||||
a = tmp;
|
||||
}
|
||||
return abs(a);
|
||||
return ft_abs(a);
|
||||
}
|
||||
|
||||
// returns the gcd, and modify arguments with new reduced values
|
||||
|
||||
Reference in New Issue
Block a user