Explicit define of functions prototypes

No-parameters functions use the prototype style FunctionName(void);
This commit is contained in:
raysan5
2014-09-03 17:06:10 +02:00
parent d2b98fbb5c
commit c56ef738ed
8 changed files with 90 additions and 90 deletions

View File

@@ -214,7 +214,7 @@ void VectorTransform(Vector3 *v, Matrix mat)
};
// Return a Vector3 init to zero
Vector3 VectorZero()
Vector3 VectorZero(void)
{
Vector3 zero = { 0.0, 0.0, 0.0 };