diff options
Diffstat (limited to 'kernel/include/linux/lcm.h')
-rw-r--r-- | kernel/include/linux/lcm.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/kernel/include/linux/lcm.h b/kernel/include/linux/lcm.h new file mode 100644 index 000000000..1ce79a7f1 --- /dev/null +++ b/kernel/include/linux/lcm.h @@ -0,0 +1,9 @@ +#ifndef _LCM_H +#define _LCM_H + +#include <linux/compiler.h> + +unsigned long lcm(unsigned long a, unsigned long b) __attribute_const__; +unsigned long lcm_not_zero(unsigned long a, unsigned long b) __attribute_const__; + +#endif /* _LCM_H */ |