lcm.c 288 字节
Newer Older
1 2
#include <linux/kernel.h>
#include <linux/gcd.h>
3
#include <linux/export.h>
4
#include <linux/lcm.h>
5 6 7 8 9 10 11 12 13 14 15 16

/* 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);