Remove extra newlines

This commit is contained in:
2025-06-21 22:22:04 +03:00
parent 6e643403b4
commit 6ff6896969
21 changed files with 1 additions and 235 deletions

View File

@@ -8,43 +8,36 @@ void BH_Vec2iAdd(const int a[2],
int out[2]);
void BH_Vec2iSub(const int a[2],
const int b[2],
int out[2]);
void BH_Vec2iMul(const int a[2],
const int b[2],
int out[2]);
void BH_Vec2iScale(const int a[2],
int b,
int out[2]);
void BH_Vec2iMulAdd(const int a[2],
const int b[2],
const int c[2],
int out[2]);
void BH_Vec2iNegate(const int in[2],
int out[2]);
void BH_Vec2iMin(const int a[2],
const int b[2],
int out[2]);
void BH_Vec2iMax(const int a[2],
const int b[2],
int out[2]);