X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fdots_mvcur.c;h=558683d56fdb822d5bf22da94ab549996833b082;hp=611964c1eae823279eb412acefcba70218179970;hb=da5e7c6148aa378da9d8da09be73e0ddd3995c6f;hpb=59108c98bda25ae50b3a319e2bcb7f4b9a174024 diff --git a/test/dots_mvcur.c b/test/dots_mvcur.c index 611964c1..558683d5 100644 --- a/test/dots_mvcur.c +++ b/test/dots_mvcur.c @@ -29,7 +29,7 @@ /* * Author: Thomas E. Dickey - 2007 * - * $Id: dots_mvcur.c,v 1.4 2009/10/10 16:14:24 tom Exp $ + * $Id: dots_mvcur.c,v 1.6 2010/11/14 01:00:44 tom Exp $ * * A simple demo of the terminfo interface, and mvcur. */ @@ -83,7 +83,7 @@ cleanup(void) printf("\n\n%ld total chars, rate %.2f/sec\n", total_chars, - ((double) (total_chars) / (time((time_t *) 0) - started))); + ((double) (total_chars) / (double) (time((time_t *) 0) - started))); } static void @@ -92,22 +92,21 @@ onsig(int n GCC_UNUSED) interrupted = TRUE; } -static float +static double ranf(void) { long r = (rand() & 077777); - return ((float) r / 32768.); + return ((double) r / 32768.); } int -main( - int argc GCC_UNUSED, - char *argv[]GCC_UNUSED) +main(int argc GCC_UNUSED, + char *argv[]GCC_UNUSED) { int x0 = 1, y0 = 1; int x, y, z, p; - float r; - float c; + double r; + double c; SCREEN *sp; CATCHALL(onsig); @@ -124,8 +123,8 @@ main( max_colors = -1; } - r = (float) (lines - 4); - c = (float) (columns - 4); + r = (double) (lines - 4); + c = (double) (columns - 4); started = time((time_t *) 0); while (!interrupted) {