https://github.com/torvalds/linux
Raw File
Tip revision: 49553c2ef88749dd502687f4eb9c258bb10a4f44 authored by Linus Torvalds on 12 September 2010, 23:07:37 UTC
Linux 2.6.36-rc4
Tip revision: 49553c2
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