fix 'function declaration isn’t a prototype'

This commit is contained in:
Recep Aslantas
2020-02-24 23:11:03 +03:00
parent ab20ebc28c
commit 638b9f6dbe
2 changed files with 4 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ test_rand_vec3(vec3 dest) {
}
vec3s
test_rand_vec3s() {
test_rand_vec3s(void) {
vec3s r;
test_rand_vec3(r.raw);
return r;
@@ -62,7 +62,7 @@ test_rand_vec4(vec4 dest) {
}
vec4s
test_rand_vec4s() {
test_rand_vec4s(void) {
vec4s r;
test_rand_vec4(r.raw);
return r;