https://github.com/torvalds/linux
Raw File
Tip revision: d48b97b403d23f6df0b990cee652bdf9a52337a3 authored by Linus Torvalds on 06 May 2012, 22:07:32 UTC
Linux 3.4-rc6
Tip revision: d48b97b
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);
	while ((r = a % b) != 0) {
		a = b;
		b = r;
	}
	return b;
}
EXPORT_SYMBOL_GPL(gcd);
back to top