Back to home page

OSCL-LXR

 
 

    


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