Remove ucore_ prefix from headers and source files

This commit is contained in:
Nils O. Selåsdal
2013-03-06 22:22:04 +01:00
parent ee8d9ae19d
commit 8badeaf857
85 changed files with 168 additions and 168 deletions
+13
View File
@@ -0,0 +1,13 @@
#include "ucore/math.h"
uint32_t
uc_gcd_32(uint32_t a, uint32_t b)
{
while (b != 0) {
uint32_t t = b;
b = a%b;
a = t;
}
return a;
}