Apply clang-format.

This commit is contained in:
Syoyo Fujita
2016-08-12 20:39:42 +09:00
parent 8ca2bc0de7
commit 673501749f
2 changed files with 36 additions and 39 deletions

View File

@@ -86,7 +86,7 @@ static void vsub(const float *src1, const float *src2, float *dst) {
}
static void vcopy(const float *v1, float *v2) {
register int i;
int i;
for (i = 0; i < 3; i++)
v2[i] = v1[i];
}