blob: 0db3efd56efbbe478dff8d81b18ce655fb3a250a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Martin K. Petersen2cda2722010-03-15 12:46:51 +01002#ifndef _LCM_H
3#define _LCM_H
4
5#include <linux/compiler.h>
6
7unsigned long lcm(unsigned long a, unsigned long b) __attribute_const__;
Mike Snitzere9637412015-03-30 13:39:09 -04008unsigned long lcm_not_zero(unsigned long a, unsigned long b) __attribute_const__;
Martin K. Petersen2cda2722010-03-15 12:46:51 +01009
10#endif /* _LCM_H */