From 205a2d85546f16018209dcef3271f74a96c6a1e2 Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Fri, 12 Aug 1983 02:53:10 -0800 Subject: [PATCH] sccs keyword fixes SCCS-vsn: bin/cat/cat.c 4.6 SCCS-vsn: bin/ed/ed.c 4.3 SCCS-vsn: usr.bin/grep/old.bin.grep/old.bin.grep.c 4.5 SCCS-vsn: old/hostid/hostid.c 4.2 SCCS-vsn: bin/hostname/hostname.c 1.4 SCCS-vsn: libexec/mail.local/mail.local.c 4.16 SCCS-vsn: usr.bin/pagesize/pagesize.c 4.2 SCCS-vsn: bin/rmail/rmail.c 4.4 --- usr/src/bin/cat/cat.c | 5 ++++- usr/src/bin/ed/ed.c | 4 +++- usr/src/bin/hostname/hostname.c | 4 +++- usr/src/bin/rmail/rmail.c | 6 ++++-- usr/src/libexec/mail.local/mail.local.c | 6 ++++-- usr/src/old/hostid/hostid.c | 4 +++- usr/src/usr.bin/grep/old.bin.grep/old.bin.grep.c | 4 +++- usr/src/usr.bin/pagesize/pagesize.c | 4 +++- 8 files changed, 27 insertions(+), 10 deletions(-) diff --git a/usr/src/bin/cat/cat.c b/usr/src/bin/cat/cat.c index cd831ed1c4..c70942b0b4 100644 --- a/usr/src/bin/cat/cat.c +++ b/usr/src/bin/cat/cat.c @@ -1,7 +1,10 @@ +#ifndef lint +static char *sccsid = "@(#)cat.c 4.6 (Berkeley) %G%"; +#endif + /* * Concatenate files. */ -static char *Sccsid = "@(#)cat.c 4.5 (Berkeley) %G%"; #include #include diff --git a/usr/src/bin/ed/ed.c b/usr/src/bin/ed/ed.c index 09bf1e1120..1ed9575033 100644 --- a/usr/src/bin/ed/ed.c +++ b/usr/src/bin/ed/ed.c @@ -1,4 +1,6 @@ -/* ed.c 4.2 82/12/24 */ +#ifndef lint +static char sccsid[] = "@(#)ed.c 4.3 (Berkeley) %G%"; +#endif /* * Editor diff --git a/usr/src/bin/hostname/hostname.c b/usr/src/bin/hostname/hostname.c index 5f1ef24363..faa3bc3cc8 100644 --- a/usr/src/bin/hostname/hostname.c +++ b/usr/src/bin/hostname/hostname.c @@ -1,4 +1,6 @@ -static char *sccsid = "@(#)hostname.c 1.3 1.3 83/03/30"; +#ifndef lint +static char *sccsid = "@(#)hostname.c 1.4 (Berkeley) %G%"; +#endif /* * hostname -- get (or set hostname) */ diff --git a/usr/src/bin/rmail/rmail.c b/usr/src/bin/rmail/rmail.c index aa114df9f8..6657a6d4f2 100644 --- a/usr/src/bin/rmail/rmail.c +++ b/usr/src/bin/rmail/rmail.c @@ -1,3 +1,7 @@ +#ifndef lint +static char sccsid[] = "@(#)rmail.c 4.4 (Berkeley) %G%"; +#endif + /* ** RMAIL -- UUCP mail server. ** @@ -11,8 +15,6 @@ # include # include "conf.h" -static char SccsId[] = "@(#)rmail.c 4.3 (Berkeley) %G%"; - typedef char bool; #define TRUE 1 #define FALSE 0 diff --git a/usr/src/libexec/mail.local/mail.local.c b/usr/src/libexec/mail.local/mail.local.c index 7d3bbfebe2..366218a384 100644 --- a/usr/src/libexec/mail.local/mail.local.c +++ b/usr/src/libexec/mail.local/mail.local.c @@ -1,3 +1,7 @@ +#ifndef lint +static char sccsid[] = "@(#)mail.local.c 4.16 (Berkeley) %G%"; +#endif + #include #include #include @@ -8,8 +12,6 @@ #include #include -static char SccsId[] = "@(#)mail.local.c 4.15 %G%"; - #define SENDMAIL "/usr/lib/sendmail" diff --git a/usr/src/old/hostid/hostid.c b/usr/src/old/hostid/hostid.c index 4a0a51ea77..cb96ed871c 100644 --- a/usr/src/old/hostid/hostid.c +++ b/usr/src/old/hostid/hostid.c @@ -1,4 +1,6 @@ -/* hostid.c 4.1 82/11/07 */ +#ifndef lint +static char sccsid[] = "@(#)hostid.c 4.2 (Berkeley) %G%"; +#endif main(argc, argv) int argc; diff --git a/usr/src/usr.bin/grep/old.bin.grep/old.bin.grep.c b/usr/src/usr.bin/grep/old.bin.grep/old.bin.grep.c index c7b513200d..6dedc97ce0 100644 --- a/usr/src/usr.bin/grep/old.bin.grep/old.bin.grep.c +++ b/usr/src/usr.bin/grep/old.bin.grep/old.bin.grep.c @@ -1,4 +1,6 @@ -/* old.bin.grep.c 4.4 83/06/30 */ +#ifndef lint +static char sccsid[] = "@(#)old.bin.grep.c 4.5 (Berkeley) %G%"; +#endif /* * grep -- print lines matching (or not matching) a pattern diff --git a/usr/src/usr.bin/pagesize/pagesize.c b/usr/src/usr.bin/pagesize/pagesize.c index 93c2ca2701..83e83db153 100644 --- a/usr/src/usr.bin/pagesize/pagesize.c +++ b/usr/src/usr.bin/pagesize/pagesize.c @@ -1,4 +1,6 @@ -/* pagesize.c 4.1 82/11/07 */ +#ifndef lint +static char sccsid[] = "@(#)pagesize.c 4.2 (Berkeley) %G%"; +#endif main() { -- 2.20.1