lcm.h 154 B

12345678
  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. #endif /* _LCM_H */