gdc -> grdc

This commit is contained in:
Andrey A. Chernov 1994-12-05 19:30:00 +00:00
parent 247c65ea84
commit b32baf3440
2 changed files with 6 additions and 6 deletions

View File

@ -1,13 +1,13 @@
.TH GDC 6 .TH GRDC 6
.SH NAME .SH NAME
gdc \- grand digital clock (curses) grdc \- grand digital clock (curses)
.SH SYNOPSIS .SH SYNOPSIS
.B gdc .B grdc
[-s] [ [-s] [
.I n .I n
] ]
.SH DESCRIPTION .SH DESCRIPTION
.I Gdc .I Grdc
runs a digital clock made of reverse-video blanks on a curses runs a digital clock made of reverse-video blanks on a curses
compatible VDU screen. With an optional numeric argument compatible VDU screen. With an optional numeric argument
.I n .I n

View File

@ -1,6 +1,6 @@
/* /*
* Grand digital clock for curses compatible terminals * Grand digital clock for curses compatible terminals
* Usage: gdc [-s] [n] -- run for n seconds (default infinity) * Usage: grdc [-s] [n] -- run for n seconds (default infinity)
* Flags: -s: scroll * Flags: -s: scroll
* *
* modified 10-18-89 for curses (jrl) * modified 10-18-89 for curses (jrl)
@ -151,7 +151,7 @@ int n = 0;
clear(); clear();
refresh(); refresh();
endwin(); endwin();
fprintf(stderr, "gdc terminated by signal %d\n", sigtermed); fprintf(stderr, "grdc terminated by signal %d\n", sigtermed);
exit(1); exit(1);
} }
} while(--n); } while(--n);