Add copyright
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Fri, 31 May 1985 07:27:38 +0000 (23:27 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Fri, 31 May 1985 07:27:38 +0000 (23:27 -0800)
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

12 files changed:
usr/src/usr.bin/systat/cmds.c
usr/src/usr.bin/systat/cmdtab.c
usr/src/usr.bin/systat/disks.c
usr/src/usr.bin/systat/fetch.c
usr/src/usr.bin/systat/iostat.c
usr/src/usr.bin/systat/keyboard.c
usr/src/usr.bin/systat/main.c
usr/src/usr.bin/systat/mbufs.c
usr/src/usr.bin/systat/netstat.c
usr/src/usr.bin/systat/pigs.c
usr/src/usr.bin/systat/swap.c
usr/src/usr.bin/systat/systat.h

index f16878a..7159e57 100644 (file)
@@ -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
 #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.
 
 /*
  * Command support.
index ddca46a..afa97a7 100644 (file)
@@ -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
 #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"
 
 
 #include "systat.h"
 
index 47d7dfc..9efad27 100644 (file)
@@ -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
 #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 <sys/buf.h>
 
 #include "systat.h"
 #include <sys/buf.h>
index 98c4edc..39da301 100644 (file)
@@ -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
 #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 <sys/dir.h>
 
 #include "systat.h"
 #include <sys/dir.h>
index d90d7fa..47413cc 100644 (file)
@@ -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
 #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
 
 /*
  * iostat
index 5392129..277dc92 100644 (file)
@@ -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
 #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.
 
 /*
  * Keyboard input support.
index 6efe8aa..21ffa01 100644 (file)
@@ -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
 #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"
 
 
 #include "systat.h"
 
index 6a98d0f..6838cc6 100644 (file)
@@ -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
 #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 <sys/mbuf.h>
 
 #include "systat.h"
 #include <sys/mbuf.h>
index e1141e3..ec260d7 100644 (file)
@@ -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
 #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
 
 /*
  * netstat
index 4ee5333..6389081 100644 (file)
@@ -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
 #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 <sys/dir.h>
 
 #include "systat.h"
 #include <sys/dir.h>
index 155dc86..58f8a22 100644 (file)
@@ -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
 #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 <sys/dir.h>
 
 #include "systat.h"
 #include <sys/dir.h>
index 3a1190d..662bc2e 100644 (file)
@@ -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 <netdb.h>
 #include <nlist.h>
 
 #include <netdb.h>
 #include <nlist.h>