Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Martin K. Petersen | 2cda272 | 2010-03-15 12:46:51 +0100 | [diff] [blame] | 2 | #ifndef _LCM_H |
| 3 | #define _LCM_H |
| 4 | |
| 5 | #include <linux/compiler.h> |
| 6 | |
| 7 | unsigned long lcm(unsigned long a, unsigned long b) __attribute_const__; |
Mike Snitzer | e963741 | 2015-03-30 13:39:09 -0400 | [diff] [blame] | 8 | unsigned long lcm_not_zero(unsigned long a, unsigned long b) __attribute_const__; |
Martin K. Petersen | 2cda272 | 2010-03-15 12:46:51 +0100 | [diff] [blame] | 9 | |
| 10 | #endif /* _LCM_H */ |