diff options
author | Roland McGrath <roland@redhat.com> | 1996-08-27 11:29:03 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1996-08-27 11:29:03 +0000 |
commit | 6fa74367b79d0a8444e474f4e20149fb2c6929c5 (patch) | |
tree | 300f05262b753e1a07de75076ae3e75a3670f59b | |
parent | 4cee1500a486bcadf1b926020ad9065a27628c6e (diff) | |
download | gunmake-6fa74367b79d0a8444e474f4e20149fb2c6929c5.tar.gz |
Tue Aug 27 01:06:34 1996 Roland McGrath <roland@baalperazim.frob.com>
* main.c (print_version): Print out bug-reporting address.
Mon Aug 26 19:55:47 1996 Roland McGrath <roland@baalperazim.frob.com>
* main.c (print_data_base): Don't declare ctime; headers do it for us
already.
-rw-r--r-- | main.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2141,7 +2141,9 @@ print_version () %s\tFree Software Foundation, Inc.\n\ %sThis is free software; see the source for copying conditions.\n\ %sThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\ -%sPARTICULAR PURPOSE.\n\n", precede, precede, precede, precede, precede); +%sPARTICULAR PURPOSE.\n\n\ +%sReport bugs to <bug-gnu-utils@prep.ai.mit.edu>.\n\n", + precede, precede, precede, precede, precede, precede); printed_version = 1; @@ -2155,7 +2157,6 @@ print_version () static void print_data_base () { - extern char *ctime (); time_t when; when = time ((time_t *) 0); |