https://github.com/torvalds/linux
Raw File
Tip revision: e07cccf4046978df10f2e13fe2b99b2f9b3a65db authored by Linus Torvalds on 05 September 2009, 23:38:12 UTC
Linux 2.6.31-rc9
Tip revision: e07cccf
gcd.c
#include <linux/kernel.h>
#include <linux/gcd.h>
#include <linux/module.h>

/* Greatest common divisor */
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);
back to top