From: José Fonseca Date: Fri, 16 Oct 2009 10:39:29 +0000 (+0100) Subject: progs/tests: Use rand() instead of random(). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bb6e3af93920ca15d19fbb9685e5b6f612cc502c;p=mesa.git progs/tests: Use rand() instead of random(). More portable. Same implementation on Linux. (cherry picked from commit 699260b19535abaa3af0a5d33eb039e3d6a30ce9) --- diff --git a/progs/tests/prog_parameter.c b/progs/tests/prog_parameter.c index 6dd956c4023..6123ef7c162 100644 --- a/progs/tests/prog_parameter.c +++ b/progs/tests/prog_parameter.c @@ -116,7 +116,7 @@ static int set_parameter_batch( GLsizei count, GLfloat * param, for ( i = 0 ; i < (4 * count) ; i++ ) { - param[i] = (GLfloat) random() / (GLfloat) random(); + param[i] = (GLfloat) rand() / (GLfloat) rand(); } /* Try using the "classic" interface.