lcm.h 236 B

12345678910
  1. #ifndef _LCM_H
  2. #define _LCM_H
  3. #include <linux/compiler.h>
  4. unsigned long lcm(unsigned long a, unsigned long b) __attribute_const__;
  5. unsigned long lcm_not_zero(unsigned long a, unsigned long b) __attribute_const__;
  6. #endif /* _LCM_H */