aboutsummaryrefslogtreecommitdiff
path: root/lib/gcd.c
blob: 7734dd71353961c6b6f716547ad63a0e3f38e56b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <linux/kernel.h>
#include <linux/gcd.h>
#include <linux/export.h>

unsigned long gcd(unsigned long a, unsigned long b)
{
	unsigned long r;

	if (a < b)
		swap(a, b);
	while ((r = a % b) != 0) {
		a = b;
		b = r;
	}
	return b;
}
EXPORT_SYMBOL_GPL(gcd);