Files
libucore/src/ucore_gcd64.c
T
2012-10-29 23:07:32 +01:00

14 lines
143 B
C

#include "ucore_math.h"
uint64_t
uc_gcd_64(uint64_t a, uint64_t b)
{
while(b != 0) {
uint64_t t = b;
b = a%b;
a = t;
}
return a;
}