From f42904bce6b48ae1b5206ad54c9d342cc36aeb55 Mon Sep 17 00:00:00 2001 From: Distribution Folks Date: Fri, 31 May 1985 16:43:46 -0800 Subject: [PATCH] Add copyright SCCS-vsn: usr.bin/users/users.c 5.1 SCCS-vsn: usr.bin/vmstat/vmstat.c 5.1 SCCS-vsn: usr.bin/systat/vmstat.c 5.1 SCCS-vsn: usr.bin/w/w.c 5.1 SCCS-vsn: usr.bin/wc/wc.c 5.1 SCCS-vsn: usr.bin/what/what.c 5.1 SCCS-vsn: old/whereis/whereis.c 5.1 SCCS-vsn: old/whoami/whoami.c 5.1 SCCS-vsn: usr.bin/whois/whois.c 5.1 SCCS-vsn: usr.bin/xstr/xstr.c 5.1 SCCS-vsn: usr.bin/yes/yes.c 5.1 SCCS-vsn: usr.bin/rlogin/rlogin.c 5.1 --- usr/src/old/whereis/whereis.c | 16 ++++++++++++++-- usr/src/old/whoami/whoami.c | 17 ++++++++++++++++- usr/src/usr.bin/rlogin/rlogin.c | 16 ++++++++++++++-- usr/src/usr.bin/systat/vmstat.c | 16 ++++++++++++++-- usr/src/usr.bin/users/users.c | 17 ++++++++++++++++- usr/src/usr.bin/vmstat/vmstat.c | 16 ++++++++++++++-- usr/src/usr.bin/w/w.c | 17 +++++++++++++++-- usr/src/usr.bin/wc/wc.c | 17 ++++++++++++++++- usr/src/usr.bin/what/what.c | 17 ++++++++++++++++- usr/src/usr.bin/whois/whois.c | 16 ++++++++++++++-- usr/src/usr.bin/xstr/xstr.c | 17 ++++++++++++++++- usr/src/usr.bin/yes/yes.c | 17 ++++++++++++++++- 12 files changed, 181 insertions(+), 18 deletions(-) diff --git a/usr/src/old/whereis/whereis.c b/usr/src/old/whereis/whereis.c index 8b67dbe783..a88fb8bd9b 100644 --- a/usr/src/old/whereis/whereis.c +++ b/usr/src/old/whereis/whereis.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + #ifndef lint -static char *sccsid = "@(#)whereis.c 4.11 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)whereis.c 5.1 (Berkeley) %G%"; +#endif not lint #include #include diff --git a/usr/src/old/whoami/whoami.c b/usr/src/old/whoami/whoami.c index 24e6f36b22..acc77f4864 100644 --- a/usr/src/old/whoami/whoami.c +++ b/usr/src/old/whoami/whoami.c @@ -1,4 +1,19 @@ -static char *sccsid = "@(#)whoami.c 4.2 (Berkeley) %G%"; +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)whoami.c 5.1 (Berkeley) %G%"; +#endif not lint + #include /* * whoami diff --git a/usr/src/usr.bin/rlogin/rlogin.c b/usr/src/usr.bin/rlogin/rlogin.c index a18745004b..317e8f3c20 100644 --- a/usr/src/usr.bin/rlogin/rlogin.c +++ b/usr/src/usr.bin/rlogin/rlogin.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1983 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + #ifndef lint -static char sccsid[] = "@(#)rlogin.c 4.18 (Berkeley) 85/05/31"; -#endif +static char sccsid[] = "@(#)rlogin.c 5.1 (Berkeley) %G%"; +#endif not lint /* * rlogin - remote login diff --git a/usr/src/usr.bin/systat/vmstat.c b/usr/src/usr.bin/systat/vmstat.c index a2b32659de..b657bff96d 100644 --- a/usr/src/usr.bin/systat/vmstat.c +++ b/usr/src/usr.bin/systat/vmstat.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + #ifndef lint -static char sccsid[] = "@(#)vmstat.c 1.4 (Berkeley) %G%"; -#endif +char copyright[] = +"@(#) Copyright (c) 1983 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)vmstat.c 5.1 (Berkeley) %G%"; +#endif not lint /* * Cursed vmstat -- from Robert Elz. diff --git a/usr/src/usr.bin/users/users.c b/usr/src/usr.bin/users/users.c index b17fd08942..5f95b2beb6 100644 --- a/usr/src/usr.bin/users/users.c +++ b/usr/src/usr.bin/users/users.c @@ -1,4 +1,19 @@ -static char *sccsid = "@(#)users.c 4.2 (Berkeley) %G%"; +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)users.c 5.1 (Berkeley) %G%"; +#endif not lint + /* * users */ diff --git a/usr/src/usr.bin/vmstat/vmstat.c b/usr/src/usr.bin/vmstat/vmstat.c index f1f99152a3..bcce596a16 100644 --- a/usr/src/usr.bin/vmstat/vmstat.c +++ b/usr/src/usr.bin/vmstat/vmstat.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + #ifndef lint -static char *sccsid = "@(#)vmstat.c 4.18 (Berkeley) %G%"; -#endif +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)vmstat.c 5.1 (Berkeley) %G%"; +#endif not lint #include #include diff --git a/usr/src/usr.bin/w/w.c b/usr/src/usr.bin/w/w.c index 6bbda67c8b..021931e692 100644 --- a/usr/src/usr.bin/w/w.c +++ b/usr/src/usr.bin/w/w.c @@ -1,6 +1,19 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + #ifndef lint -static char *sccsid = "@(#)w.c 4.15 (Berkeley) %G%"; -#endif +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)w.c 5.1 (Berkeley) %G%"; +#endif not lint + /* * w - print system status (who and what) * diff --git a/usr/src/usr.bin/wc/wc.c b/usr/src/usr.bin/wc/wc.c index b098f0c2a3..d07167f7c5 100644 --- a/usr/src/usr.bin/wc/wc.c +++ b/usr/src/usr.bin/wc/wc.c @@ -1,4 +1,19 @@ -static char *sccsid = "@(#)wc.c 4.6 (Berkeley) %G%"; +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)wc.c 5.1 (Berkeley) %G%"; +#endif not lint + /* wc line and word count */ #include diff --git a/usr/src/usr.bin/what/what.c b/usr/src/usr.bin/what/what.c index 45e013a847..d56bcec40d 100644 --- a/usr/src/usr.bin/what/what.c +++ b/usr/src/usr.bin/what/what.c @@ -1,4 +1,19 @@ -static char *sccsid = "@(#)what.c 4.2 (Berkeley) %G%"; +/* + * Copyright (c) 1980, 1988 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1980, 1988 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)what.c 5.1 (Berkeley) %G%"; +#endif not lint + #include /* diff --git a/usr/src/usr.bin/whois/whois.c b/usr/src/usr.bin/whois/whois.c index 76b1a6e06a..6febcb004d 100644 --- a/usr/src/usr.bin/whois/whois.c +++ b/usr/src/usr.bin/whois/whois.c @@ -1,6 +1,18 @@ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + #ifndef lint -static char sccsid[] = "@(#)whois.c 4.3 85/03/25"; -#endif +static char sccsid[] = "@(#)whois.c 5.1 (Berkeley) %G%"; +#endif not lint #include #include diff --git a/usr/src/usr.bin/xstr/xstr.c b/usr/src/usr.bin/xstr/xstr.c index 56221af2c7..152aa29213 100644 --- a/usr/src/usr.bin/xstr/xstr.c +++ b/usr/src/usr.bin/xstr/xstr.c @@ -1,4 +1,19 @@ -static char *sccsid = "@(#)xstr.c 4.3 (Berkeley) %G%"; +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)xstr.c 5.1 (Berkeley) %G%"; +#endif not lint + #include #include #include diff --git a/usr/src/usr.bin/yes/yes.c b/usr/src/usr.bin/yes/yes.c index aae6ec6df5..6a35de9369 100644 --- a/usr/src/usr.bin/yes/yes.c +++ b/usr/src/usr.bin/yes/yes.c @@ -1,4 +1,19 @@ -static char *sccsid ="@(#)yes.c 4.1 (Berkeley) %G%"; +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + */ + +#ifndef lint +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)yes.c 5.1 (Berkeley) %G%"; +#endif not lint + main(argc, argv) char **argv; { -- 2.20.1