X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Frailroad.c;h=696ae73afbed9ea763aff03213cea03d1ba5a047;hp=ad89fa007ceb2c3291f15d343dc1820c2bf66171;hb=59108c98bda25ae50b3a319e2bcb7f4b9a174024;hpb=5242fccf157e715ed878455a3efea6c82b840eb5 diff --git a/test/railroad.c b/test/railroad.c index ad89fa00..696ae73a 100644 --- a/test/railroad.c +++ b/test/railroad.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 2000-2006,2007 Free Software Foundation, Inc. * + * Copyright (c) 2000-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 - 2000 * - * $Id: railroad.c,v 1.15 2007/02/03 18:51:23 tom Exp $ + * $Id: railroad.c,v 1.18 2009/10/10 16:14:42 tom Exp $ * * A simple demo of the termcap interface. */ @@ -56,10 +56,10 @@ static char *backup; static bool interrupted = FALSE; static int -outc(int c) +outc(TPUTS_ARG c) { if (interrupted) { - char tmp = c; + char tmp = (char) c; write(STDOUT_FILENO, &tmp, 1); } else { putc(c, stdout); @@ -82,7 +82,7 @@ Backup(void) } static void -ShowCursor(int flag) +MyShowCursor(int flag) { if (startC != 0 && finisC != 0) { tputs(flag ? startC : finisC, 1, outc); @@ -166,7 +166,7 @@ cleanup(void) { Underline(0); StandOut(0); - ShowCursor(1); + MyShowCursor(1); } static void @@ -214,14 +214,14 @@ railroad(char **args) startC = tgetstr("ve", &ap); finisC = tgetstr("vi", &ap); - ShowCursor(0); + MyShowCursor(0); CATCHALL(onsig); while (*args) { ShowSign(*args++); } - ShowCursor(1); + MyShowCursor(1); } }