test: rename test_rand_angle() to test_rand()

This commit is contained in:
Recep Aslantas
2019-01-28 15:31:03 +03:00
parent 11a6e4471e
commit b0e48a56ca
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ test_rand_vec4(vec4 dest) {
}
float
test_rand_angle(void) {
test_rand(void) {
srand((unsigned int)time(NULL));
return drand48();
}

View File

@@ -59,7 +59,7 @@ void
test_rand_vec4(vec4 dest) ;
float
test_rand_angle(void);
test_rand(void);
void
test_rand_quat(versor q);