diff --git a/test/src/test_common.c b/test/src/test_common.c index 405000d..d41d3cb 100644 --- a/test/src/test_common.c +++ b/test/src/test_common.c @@ -58,7 +58,7 @@ test_rand_vec4(vec4 dest) { } float -test_rand_angle(void) { +test_rand(void) { srand((unsigned int)time(NULL)); return drand48(); } diff --git a/test/src/test_common.h b/test/src/test_common.h index 7881e7a..8a16b0f 100644 --- a/test/src/test_common.h +++ b/test/src/test_common.h @@ -59,7 +59,7 @@ void test_rand_vec4(vec4 dest) ; float -test_rand_angle(void); +test_rand(void); void test_rand_quat(versor q);