X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fdots_mvcur.c;h=b45ace86bafd37b34d629db184893e633816ecfc;hp=f02302382fc654be2b27780144e6c46e053115a7;hb=1385381954c39dc95558adc87fad457046959cc1;hpb=4ae6d1c18d0dec956b814865893812655ec3a22c diff --git a/test/dots_mvcur.c b/test/dots_mvcur.c index f0230238..b45ace86 100644 --- a/test/dots_mvcur.c +++ b/test/dots_mvcur.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1999-2007,2008 Free Software Foundation, Inc. * + * Copyright (c) 2007-2008,2009 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -29,7 +29,7 @@ /* * Author: Thomas E. Dickey - 2007 * - * $Id: dots_mvcur.c,v 1.2 2008/02/09 18:08:57 tom Exp $ + * $Id: dots_mvcur.c,v 1.7 2011/04/23 19:17:20 tom Exp $ * * A simple demo of the terminfo interface, and mvcur. */ @@ -46,16 +46,20 @@ static bool interrupted = FALSE; static long total_chars = 0; static time_t started; -static int -outc(TPUTS_ARG c) +static +TPUTS_PROTO(outc, c) { + int rc = c; + if (interrupted) { - char tmp = c; - write(STDOUT_FILENO, &tmp, 1); + char tmp = (char) c; + if (write(STDOUT_FILENO, &tmp, 1) == -1) + rc = EOF; } else { - putc(c, stdout); + if (putc(c, stdout) == EOF) + rc = EOF; } - return 0; + TPUTS_RETURN(rc); } static bool @@ -79,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 @@ -88,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); @@ -120,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) {