diff options
| author | raysan5 <raysan5@gmail.com> | 2014-09-03 17:06:10 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2014-09-03 17:06:10 +0200 |
| commit | c56ef738ed1ad440975bd362248c7b3e33c05a0e (patch) | |
| tree | aeb16774c925665970346e44c3c7e966146277fe /src/raymath.c | |
| parent | d2b98fbb5ce8d82bb2c46f3d66ffda58d6ad5c6f (diff) | |
| download | raylib-c56ef738ed1ad440975bd362248c7b3e33c05a0e.tar.gz raylib-c56ef738ed1ad440975bd362248c7b3e33c05a0e.zip | |
Explicit define of functions prototypes
No-parameters functions use the prototype style FunctionName(void);
Diffstat (limited to 'src/raymath.c')
| -rw-r--r-- | src/raymath.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 }; |
