tabs->spaces

This commit is contained in:
Nils O. Selåsdal
2013-11-22 20:06:05 +01:00
parent 3e05476694
commit 9090de0663
31 changed files with 1214 additions and 1214 deletions
+6 -6
View File
@@ -3,11 +3,11 @@
uint64_t
uc_gcd_64(uint64_t a, uint64_t b)
{
while (b != 0) {
uint64_t t = b;
b = a%b;
a = t;
}
while (b != 0) {
uint64_t t = b;
b = a%b;
a = t;
}
return a;
return a;
}