blob: 01b3aa922dda39ee1eec7e37e285c1d1339ce910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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 / gcd(a, b)) * b;
else if (b)
return b;
return a;
}
EXPORT_SYMBOL_GPL(lcm);
|