https://jxself.org/git/linux-libre.git
Raw File
Tip revision: d8f935dc0bd8d0beb0026740256e819f16b46aad authored by Jason Self on 04 July 2014, 08:21:49 UTC
Linux-libre 3.12.24-gnu
Tip revision: d8f935d
gcd.c
#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);

	if (!b)
		return a;
	while ((r = a % b) != 0) {
		a = b;
		b = r;
	}
	return b;
}
EXPORT_SYMBOL_GPL(gcd);
back to top