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
gdc \- grand digital clock (curses)
grdc \- grand digital clock (curses)
.SH SYNOPSIS
.B gdc
.B grdc
[-s] [
.I n
]
.SH DESCRIPTION
.I Gdc
.I Grdc
runs a digital clock made of reverse-video blanks on a curses
compatible VDU screen. With an optional numeric argument
.I n

View File

@ -1,6 +1,6 @@
/*
* 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
*
* modified 10-18-89 for curses (jrl)
@ -151,7 +151,7 @@ int n = 0;
clear();
refresh();
endwin();
fprintf(stderr, "gdc terminated by signal %d\n", sigtermed);
fprintf(stderr, "grdc terminated by signal %d\n", sigtermed);
exit(1);
}
} while(--n);