https://github.com/torvalds/linux
Raw File
Tip revision: dc1ccc48159d63eca5089e507c82c7d22ef60839 authored by Linus Torvalds on 29 November 2013, 20:57:14 UTC
Linux 3.13-rc2
Tip revision: dc1ccc4
lcm.c
#include <linux/kernel.h>
#include <linux/gcd.h>
#include <linux/export.h>
#include <linux/lcm.h>

/* Lowest common multiple */
unsigned long lcm(unsigned long a, unsigned long b)
{
	if (a && b)
		return (a * b) / gcd(a, b);
	else if (b)
		return b;

	return a;
}
EXPORT_SYMBOL_GPL(lcm);
back to top