From c56ef738ed1ad440975bd362248c7b3e33c05a0e Mon Sep 17 00:00:00 2001 From: raysan5 Date: Wed, 3 Sep 2014 17:06:10 +0200 Subject: Explicit define of functions prototypes No-parameters functions use the prototype style FunctionName(void); --- src/raymath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/raymath.c') diff --git a/src/raymath.c b/src/raymath.c index 35774a57..b3706b25 100644 --- a/src/raymath.c +++ b/src/raymath.c @@ -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 }; -- cgit v1.2.3