gcd.h 154 B

12345678
  1. #ifndef _GCD_H
  2. #define _GCD_H
  3. #include <linux/compiler.h>
  4. unsigned long gcd(unsigned long a, unsigned long b) __attribute_const__;
  5. #endif /* _GCD_H */