From 07ed1e095bd75ee79eb4b794404d360c4d036a92 Mon Sep 17 00:00:00 2001 From: Kirk McKusick Date: Thu, 30 May 1985 23:27:38 -0800 Subject: [PATCH] Add copyright SCCS-vsn: usr.bin/systat/cmds.c 5.1 SCCS-vsn: usr.bin/systat/cmdtab.c 5.1 SCCS-vsn: usr.bin/systat/disks.c 5.1 SCCS-vsn: usr.bin/systat/fetch.c 5.1 SCCS-vsn: usr.bin/systat/iostat.c 5.1 SCCS-vsn: usr.bin/systat/keyboard.c 5.1 SCCS-vsn: usr.bin/systat/main.c 5.1 SCCS-vsn: usr.bin/systat/mbufs.c 5.1 SCCS-vsn: usr.bin/systat/netstat.c 5.1 SCCS-vsn: usr.bin/systat/pigs.c 5.1 SCCS-vsn: usr.bin/systat/swap.c 5.1 SCCS-vsn: usr.bin/systat/systat.h 5.1 --- usr/src/usr.bin/systat/cmds.c | 10 ++++++++-- usr/src/usr.bin/systat/cmdtab.c | 10 ++++++++-- usr/src/usr.bin/systat/disks.c | 10 ++++++++-- usr/src/usr.bin/systat/fetch.c | 10 ++++++++-- usr/src/usr.bin/systat/iostat.c | 10 ++++++++-- usr/src/usr.bin/systat/keyboard.c | 10 ++++++++-- usr/src/usr.bin/systat/main.c | 16 ++++++++++++++-- usr/src/usr.bin/systat/mbufs.c | 10 ++++++++-- usr/src/usr.bin/systat/netstat.c | 10 ++++++++-- usr/src/usr.bin/systat/pigs.c | 14 ++++++++++++-- usr/src/usr.bin/systat/swap.c | 10 ++++++++-- usr/src/usr.bin/systat/systat.h | 8 +++++++- 12 files changed, 105 insertions(+), 23 deletions(-) diff --git a/usr/src/usr.bin/systat/cmds.c b/usr/src/usr.bin/systat/cmds.c index f16878a4ad..7159e575bd 100644 --- a/usr/src/usr.bin/systat/cmds.c +++ b/usr/src/usr.bin/systat/cmds.c @@ -1,6 +1,12 @@ +/* + * 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[] = "@(#)cmds.c 1.7 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)cmds.c 5.1 (Berkeley) %G%"; +#endif not lint /* * Command support. diff --git a/usr/src/usr.bin/systat/cmdtab.c b/usr/src/usr.bin/systat/cmdtab.c index ddca46a33e..afa97a7c21 100644 --- a/usr/src/usr.bin/systat/cmdtab.c +++ b/usr/src/usr.bin/systat/cmdtab.c @@ -1,6 +1,12 @@ +/* + * 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[] = "@(#)cmdtab.c 1.4 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)cmdtab.c 5.1 (Berkeley) %G%"; +#endif not lint #include "systat.h" diff --git a/usr/src/usr.bin/systat/disks.c b/usr/src/usr.bin/systat/disks.c index 47d7dfc90f..9efad27405 100644 --- a/usr/src/usr.bin/systat/disks.c +++ b/usr/src/usr.bin/systat/disks.c @@ -1,6 +1,12 @@ +/* + * 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[] = "@(#)disks.c 1.3 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)disks.c 5.1 (Berkeley) %G%"; +#endif not lint #include "systat.h" #include diff --git a/usr/src/usr.bin/systat/fetch.c b/usr/src/usr.bin/systat/fetch.c index 98c4edc48a..39da301fb9 100644 --- a/usr/src/usr.bin/systat/fetch.c +++ b/usr/src/usr.bin/systat/fetch.c @@ -1,6 +1,12 @@ +/* + * 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[] = "@(#)fetch.c 1.5 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)fetch.c 5.1 (Berkeley) %G%"; +#endif not lint #include "systat.h" #include diff --git a/usr/src/usr.bin/systat/iostat.c b/usr/src/usr.bin/systat/iostat.c index d90d7fad87..47413cc536 100644 --- a/usr/src/usr.bin/systat/iostat.c +++ b/usr/src/usr.bin/systat/iostat.c @@ -1,6 +1,12 @@ +/* + * 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[] = "@(#)iostat.c 1.8 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)iostat.c 5.1 (Berkeley) %G%"; +#endif not lint /* * iostat diff --git a/usr/src/usr.bin/systat/keyboard.c b/usr/src/usr.bin/systat/keyboard.c index 539212961f..277dc92fd5 100644 --- a/usr/src/usr.bin/systat/keyboard.c +++ b/usr/src/usr.bin/systat/keyboard.c @@ -1,6 +1,12 @@ +/* + * 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[] = "@(#)keyboard.c 1.5 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)keyboard.c 5.1 (Berkeley) %G%"; +#endif not lint /* * Keyboard input support. diff --git a/usr/src/usr.bin/systat/main.c b/usr/src/usr.bin/systat/main.c index 6efe8aab0d..21ffa01491 100644 --- a/usr/src/usr.bin/systat/main.c +++ b/usr/src/usr.bin/systat/main.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[] = "@(#)main.c 1.9 (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[] = "@(#)main.c 5.1 (Berkeley) %G%"; +#endif not lint #include "systat.h" diff --git a/usr/src/usr.bin/systat/mbufs.c b/usr/src/usr.bin/systat/mbufs.c index 6a98d0f6f7..6838cc6c88 100644 --- a/usr/src/usr.bin/systat/mbufs.c +++ b/usr/src/usr.bin/systat/mbufs.c @@ -1,6 +1,12 @@ +/* + * 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[] = "@(#)mbufs.c 1.6 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)mbufs.c 5.1 (Berkeley) %G%"; +#endif not lint #include "systat.h" #include diff --git a/usr/src/usr.bin/systat/netstat.c b/usr/src/usr.bin/systat/netstat.c index e1141e324d..ec260d7f83 100644 --- a/usr/src/usr.bin/systat/netstat.c +++ b/usr/src/usr.bin/systat/netstat.c @@ -1,6 +1,12 @@ +/* + * 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[] = "@(#)netstat.c 1.2 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)netstat.c 5.1 (Berkeley) %G%"; +#endif not lint /* * netstat diff --git a/usr/src/usr.bin/systat/pigs.c b/usr/src/usr.bin/systat/pigs.c index 4ee53338c9..6389081122 100644 --- a/usr/src/usr.bin/systat/pigs.c +++ b/usr/src/usr.bin/systat/pigs.c @@ -1,6 +1,16 @@ +/* + * 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[] = "@(#)pigs.c 1.8 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)pigs.c 5.1 (Berkeley) %G%"; +#endif not lint + +/* + * Pigs display from Bill Reeves at Lucasfilm + */ #include "systat.h" #include diff --git a/usr/src/usr.bin/systat/swap.c b/usr/src/usr.bin/systat/swap.c index 155dc86fcd..58f8a225e3 100644 --- a/usr/src/usr.bin/systat/swap.c +++ b/usr/src/usr.bin/systat/swap.c @@ -1,6 +1,12 @@ +/* + * 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 = "@(#)swap.c 1.8 (Berkeley) %G%"; -#endif +static char sccsid[] = "@(#)swap.c 5.1 (Berkeley) %G%"; +#endif not lint #include "systat.h" #include diff --git a/usr/src/usr.bin/systat/systat.h b/usr/src/usr.bin/systat/systat.h index 3a1190d869..662bc2e9e6 100644 --- a/usr/src/usr.bin/systat/systat.h +++ b/usr/src/usr.bin/systat/systat.h @@ -1,4 +1,10 @@ -/* systat.h 1.6 85/05/01 */ +/* + * Copyright (c) 1980 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + * + * @(#)systat.h 5.1 (Berkeley) %G% + */ #include #include -- 2.20.1