X-Git-Url: http://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=test%2Frailroad.c;h=fc3391329f1a6d3b2b9940e47e8be3999c913593;hb=7eb4be765b131f00ac3da7ce8cfd3bc6759d26c5;hp=fd773c8c52e7695e286bb0b99fcebec8a5775e45;hpb=46722468f47c2b77b3987729b4bcf2321cccfd01;p=ncurses.git diff --git a/test/railroad.c b/test/railroad.c index fd773c8c..fc339132 100644 --- a/test/railroad.c +++ b/test/railroad.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 2000-2001,2002 Free Software Foundation, Inc. * + * Copyright (c) 2000-2005,2006 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 * @@ -27,15 +27,15 @@ ****************************************************************************/ /* - * Author: Thomas E. Dickey 2000 + * Author: Thomas E. Dickey - 2000 * - * $Id: railroad.c,v 1.10 2002/04/06 20:45:22 tom Exp $ + * $Id: railroad.c,v 1.14 2006/05/20 16:02:04 tom Exp $ * * A simple demo of the termcap interface. */ #include -#include +#if HAVE_TGETENT static char *wipeit; static char *moveit; @@ -182,11 +182,10 @@ railroad(char **args) NCURSES_CONST char *name = getenv("TERM"); char buffer[1024]; char area[1024], *ap = area; - int j; if (name == 0) name = "dumb"; - if (tgetent(buffer, name)) { + if (tgetent(buffer, name) >= 0) { wipeit = tgetstr("ce", &ap); height = tgetnum("li"); @@ -216,9 +215,7 @@ railroad(char **args) ShowCursor(0); - for (j = SIGHUP; j <= SIGTERM; j++) - if (signal(j, SIG_IGN) != SIG_IGN) - signal(j, onsig); + CATCHALL(onsig); while (*args) { ShowSign(*args++); @@ -240,3 +237,13 @@ main(int argc, char *argv[]) } ExitProgram(EXIT_SUCCESS); } + +#else +int +main(int argc GCC_UNUSED, + char *argv[]GCC_UNUSED) +{ + printf("This program requires termcap\n"); + exit(EXIT_FAILURE); +} +#endif