M7350/kernel/lib/gcd.c

22 lines
313 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#include <linux/kernel.h>
#include <linux/gcd.h>
#include <linux/export.h>
/* Greatest common divisor */
unsigned long gcd(unsigned long a, unsigned long b)
{
unsigned long r;
if (a < b)
swap(a, b);
2024-09-09 08:57:42 +00:00
if (!b)
return a;
2024-09-09 08:52:07 +00:00
while ((r = a % b) != 0) {
a = b;
b = r;
}
return b;
}
EXPORT_SYMBOL_GPL(gcd);