Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _LCM_H
0003 #define _LCM_H
0004 
0005 #include <linux/compiler.h>
0006 
0007 unsigned long lcm(unsigned long a, unsigned long b) __attribute_const__;
0008 unsigned long lcm_not_zero(unsigned long a, unsigned long b) __attribute_const__;
0009 
0010 #endif /* _LCM_H */