Add copyright
authorDistribution Folks <dist@ucbvax.Berkeley.EDU>
Wed, 5 Jun 1985 07:47:34 +0000 (23:47 -0800)
committerDistribution Folks <dist@ucbvax.Berkeley.EDU>
Wed, 5 Jun 1985 07:47:34 +0000 (23:47 -0800)
SCCS-vsn: usr.bin/gprof/arcs.c 5.2
SCCS-vsn: old/more/Makefile 5.1
SCCS-vsn: old/more/more.c 5.1
SCCS-vsn: usr.bin/msgs/Makefile 5.1
SCCS-vsn: usr.bin/msgs/msgs.c 5.1
SCCS-vsn: usr.bin/msgs/pathnames.h 5.1
SCCS-vsn: usr.bin/netstat/Makefile 5.1
SCCS-vsn: usr.bin/netstat/if.c 5.1
SCCS-vsn: usr.bin/netstat/inet.c 5.1
SCCS-vsn: usr.bin/netstat/main.c 5.1
SCCS-vsn: usr.bin/netstat/mbuf.c 5.1
SCCS-vsn: usr.bin/netstat/route.c 5.1
SCCS-vsn: usr.bin/netstat/unix.c 5.1
SCCS-vsn: sbin/routed/af.c 5.1
SCCS-vsn: sbin/routed/if.c 5.1
SCCS-vsn: sbin/routed/inet.c 5.1
SCCS-vsn: sbin/routed/input.c 5.1
SCCS-vsn: sbin/routed/main.c 5.1
SCCS-vsn: sbin/routed/output.c 5.1
SCCS-vsn: sbin/routed/startup.c 5.1
SCCS-vsn: sbin/routed/tables.c 5.1
SCCS-vsn: sbin/routed/timer.c 5.1
SCCS-vsn: sbin/routed/trace.c 5.1
SCCS-vsn: sbin/routed/af.h 5.1
SCCS-vsn: sbin/routed/defs.h 5.1
SCCS-vsn: sbin/routed/interface.h 5.1
SCCS-vsn: include/protocols/routed.h 5.1
SCCS-vsn: sbin/routed/table.h 5.1
SCCS-vsn: sbin/routed/trace.h 5.1
SCCS-vsn: sbin/routed/query/Makefile 5.1
SCCS-vsn: sbin/routed/trace/trace.c 5.1
SCCS-vsn: usr.sbin/pstat/pstat.c 5.1
SCCS-vsn: sbin/route/route.c 5.1
SCCS-vsn: sbin/routed/Makefile 5.1
SCCS-vsn: sbin/savecore/savecore.c 5.1
SCCS-vsn: usr.sbin/trpt/trpt.c 5.1

36 files changed:
usr/src/include/protocols/routed.h
usr/src/old/more/Makefile
usr/src/old/more/more.c
usr/src/sbin/route/route.c
usr/src/sbin/routed/Makefile
usr/src/sbin/routed/af.c
usr/src/sbin/routed/af.h
usr/src/sbin/routed/defs.h
usr/src/sbin/routed/if.c
usr/src/sbin/routed/inet.c
usr/src/sbin/routed/input.c
usr/src/sbin/routed/interface.h
usr/src/sbin/routed/main.c
usr/src/sbin/routed/output.c
usr/src/sbin/routed/query/Makefile
usr/src/sbin/routed/startup.c
usr/src/sbin/routed/table.h
usr/src/sbin/routed/tables.c
usr/src/sbin/routed/timer.c
usr/src/sbin/routed/trace.c
usr/src/sbin/routed/trace.h
usr/src/sbin/routed/trace/trace.c
usr/src/sbin/savecore/savecore.c
usr/src/usr.bin/gprof/arcs.c
usr/src/usr.bin/msgs/Makefile
usr/src/usr.bin/msgs/msgs.c
usr/src/usr.bin/msgs/pathnames.h
usr/src/usr.bin/netstat/Makefile
usr/src/usr.bin/netstat/if.c
usr/src/usr.bin/netstat/inet.c
usr/src/usr.bin/netstat/main.c
usr/src/usr.bin/netstat/mbuf.c
usr/src/usr.bin/netstat/route.c
usr/src/usr.bin/netstat/unix.c
usr/src/usr.sbin/pstat/pstat.c
usr/src/usr.sbin/trpt/trpt.c

index a51ef3c..1b4c5c9 100644 (file)
@@ -1,4 +1,11 @@
-/*     routed.h        4.11    84/04/09        */
+/*
+ * Copyright (c) 1983 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ *
+ *     @(#)routed.h    5.1 (Berkeley) %G%
+ */
+
 /*
  * Routing Information Protocol
  *
 /*
  * Routing Information Protocol
  *
index 0e0b28e..f989e22 100644 (file)
@@ -1,4 +1,9 @@
-#      Makefile        4.3     83/11/21
+#
+# Copyright (c) 1980 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)Makefile    5.1 (Berkeley) %G%
 #
 CFLAGS=        -O
 DESTDIR=
 #
 CFLAGS=        -O
 DESTDIR=
index 2535a72..c1b7439 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
+char copyright[] =
+"@(#) Copyright (c) 1980 Regents of the University of California.\n\
+ All rights reserved.\n";
+#endif not lint
+
 #ifndef lint
 #ifndef lint
-static char *sccsid = "@(#)more.c      4.23 (Berkeley) 85/04/10";
-#endif
+static char sccsid[] = "@(#)more.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
 ** more.c - General purpose tty output filter and file perusal program
 
 /*
 ** more.c - General purpose tty output filter and file perusal program
index 01e2442..608d72f 100644 (file)
@@ -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
 #ifndef lint
-static char sccsid[] = "@(#)route.c    4.14 (Berkeley) 85/06/03";
-#endif
+static char sccsid[] = "@(#)route.c    5.1 (Berkeley) %G%";
+#endif not lint
 
 #include <sys/types.h>
 #include <sys/socket.h>
 
 #include <sys/types.h>
 #include <sys/socket.h>
index 6cb2863..ff2f1ae 100644 (file)
@@ -1,4 +1,9 @@
-#      @(#)Makefile    4.7 (Berkeley) %G%
+#
+# Copyright (c) 1983 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)Makefile    5.1 (Berkeley) %G%
 #
 ALL=   routed
 OBJS=  af.o if.o input.o main.o output.o startup.o tables.o timer.o \
 #
 ALL=   routed
 OBJS=  af.o if.o input.o main.o output.o startup.o tables.o timer.o \
index 90b7cd6..f04e8e5 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)af.c       4.17 (Berkeley) %G%";
-#endif
+static char sccsid[] = "@(#)af.c       5.1 (Berkeley) %G%";
+#endif not lint
 
 #include "defs.h"
 
 
 #include "defs.h"
 
index 99747b8..45e4e5a 100644 (file)
@@ -1,4 +1,10 @@
-/*     af.h    4.2     84/03/07        */
+/*
+ * Copyright (c) 1983 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ *
+ *     @(#)af.h        5.1 (Berkeley) %G%
+ */
 
 /*
  * Routing table management daemon.
 
 /*
  * Routing table management daemon.
index c983729..5ab5ca7 100644 (file)
@@ -1,4 +1,10 @@
-/*     defs.h  4.17    85/06/03        */
+/*
+ * Copyright (c) 1983 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ *
+ *     @(#)defs.h      5.1 (Berkeley) %G%
+ */
 
 /*
  * Internal data structure definitions for
 
 /*
  * Internal data structure definitions for
index 07aa434..307493f 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)if.c       4.4 (Berkeley) %G%";
-#endif
+static char sccsid[] = "@(#)if.c       5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * Routing Table Management Daemon
 
 /*
  * Routing Table Management Daemon
index a83e7db..4514725 100644 (file)
@@ -1,6 +1,13 @@
+/*
+ * 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
 #ifndef lint
-static char *sccsid[] = "@(#)inet.c    4.3 (Berkeley) %G%";
-#endif
+static char sccsid[] = "@(#)inet.c     5.1 (Berkeley) %G%";
+#endif not lint
+
 /*
  * Temporarily, copy these routines from the kernel,
  * as we need to know about subnets.
 /*
  * Temporarily, copy these routines from the kernel,
  * as we need to know about subnets.
index 64d4396..66e4f5a 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)input.c    4.12 (Berkeley) %G%";
-#endif
+static char sccsid[] = "@(#)input.c    5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * Routing Table Management Daemon
 
 /*
  * Routing Table Management Daemon
index d306ada..015812b 100644 (file)
@@ -1,4 +1,10 @@
-/*     interface.h     4.3     85/06/03        */
+/*
+ * Copyright (c) 1983 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ *
+ *     @(#)interface.h 5.1 (Berkeley) %G%
+ */
 
 /*
  * Routing table management daemon.
 
 /*
  * Routing table management daemon.
index bccba1e..99273a1 100644 (file)
@@ -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
 #ifndef lint
-static char sccsid[] = "@(#)main.c     4.13 (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[] = "@(#)main.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * Routing Table Management Daemon
 
 /*
  * Routing Table Management Daemon
index 49b7fd8..530235b 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)output.c   4.5 (Berkeley) %G%";
-#endif
+static char sccsid[] = "@(#)output.c   5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * Routing Table Management Daemon
 
 /*
  * Routing Table Management Daemon
index 4bd46dc..37b9abd 100644 (file)
@@ -1,4 +1,10 @@
-# Makefile %G%
+#
+# Copyright (c) 1983 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)Makefile    5.1 (Berkeley) %G%
+#
 ALL=   ../protocol.h query.c trace.c
 CFLAGS=        -O
 DESTDIR=
 ALL=   ../protocol.h query.c trace.c
 CFLAGS=        -O
 DESTDIR=
index adc1547..3fe20c1 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)startup.c  4.9 (Berkeley) %G%";
-#endif
+static char sccsid[] = "@(#)startup.c  5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * Routing Table Management Daemon
 
 /*
  * Routing Table Management Daemon
index 3324e0b..e2379de 100644 (file)
@@ -1,4 +1,10 @@
-/*     table.h 4.3     84/05/03        */
+/*
+ * Copyright (c) 1983 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ *
+ *     @(#)table.h     5.1 (Berkeley) %G%
+ */
 
 /*
  * Routing table management daemon.
 
 /*
  * Routing table management daemon.
index 03359bd..4653b0e 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)tables.c   4.11 (Berkeley) %G%";
-#endif
+static char sccsid[] = "@(#)tables.c   5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * Routing Table Management Daemon
 
 /*
  * Routing Table Management Daemon
index 8a8a084..52b1ab2 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)timer.c    4.5 (Berkeley) %G%";
-#endif
+static char sccsid[] = "@(#)timer.c    5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * Routing Table Management Daemon
 
 /*
  * Routing Table Management Daemon
index ce3e1d2..f764244 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)trace.c    4.6 (Berkeley) %G%";
-#endif
+static char sccsid[] = "@(#)trace.c    5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * Routing Table Management Daemon
 
 /*
  * Routing Table Management Daemon
index 3e30358..49e62af 100644 (file)
@@ -1,4 +1,10 @@
-/*     trace.h 4.4     84/04/09        */
+/*
+ * Copyright (c) 1983 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ *
+ *     @(#)trace.h     5.1 (Berkeley) %G%
+ */
 
 /*
  * Routing table management daemon.
 
 /*
  * Routing table management daemon.
index c67e4a7..68c14de 100644 (file)
@@ -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
 #ifndef lint
-static char sccsid[] = "@(#)trace.c    4.3 %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[] = "@(#)trace.c    5.1 (Berkeley) %G%";
+#endif not lint
 
 #include <sys/param.h>
 #include <sys/protosw.h>
 
 #include <sys/param.h>
 #include <sys/protosw.h>
index 45ae570..99151c4 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 = "@(#)savecore.c  4.15 (Berkeley) 85/06/03";
-#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[] = "@(#)savecore.c 5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * savecore
 
 /*
  * savecore
index ba4a065..71c7ea2 100644 (file)
@@ -5,7 +5,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)arcs.c     5.1 (Berkeley) %G%";
+static char sccsid[] = "@(#)arcs.c     5.2 (Berkeley) %G%";
 #endif not lint
 
 #include "gprof.h"
 #endif not lint
 
 #include "gprof.h"
index a251e0d..df0c2d4 100644 (file)
@@ -1,5 +1,10 @@
 #
 #
-#      @(#)Makefile    4.1 %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.
+#
+#      @(#)Makefile    5.1 (Berkeley) %G%
+#
 #
 CFLAGS=-O
 SRCS = msgs.c msgs.h Makefile
 #
 CFLAGS=-O
 SRCS = msgs.c msgs.h Makefile
index 7fd1132..90fe11e 100644 (file)
@@ -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
 #ifndef lint
-static char sccsid[] = "@(#)msgs.c     4.16 (Berkeley) %G%";
-#endif 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[] = "@(#)msgs.c     5.1 (Berkeley) %G%";
+#endif not lint
+
 /*
  * msgs - a user bulletin board program
  *
 /*
  * msgs - a user bulletin board program
  *
index cb5d14e..208ccbd 100644 (file)
@@ -1,4 +1,10 @@
-/*     pathnames.h     4.2     83/08/11        */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ *
+ *     @(#)pathnames.h 5.1 (Berkeley) %G%
+ */
 
 /*
  * Local definitions for msgs.
 
 /*
  * Local definitions for msgs.
index dceb36f..a83e3d1 100644 (file)
@@ -1,4 +1,10 @@
-#      Makefile (Berkeley) %G%
+#
+# Copyright (c) 1983 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)Makefile    5.1 (Berkeley) %G%
+#
 OBJS=  host.o inet.o if.o main.o mbuf.o route.o unix.o
 CFLAGS=-O
 DESTDIR=
 OBJS=  host.o inet.o if.o main.o mbuf.o route.o unix.o
 CFLAGS=-O
 DESTDIR=
index d07d3ea..7905f09 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)if.c       4.7 85/06/03";
-#endif
+static char sccsid[] = "@(#)if.c       5.1 (Berkeley) %G%";
+#endif not lint
 
 #include <sys/types.h>
 #include <sys/socket.h>
 
 #include <sys/types.h>
 #include <sys/socket.h>
index a664b87..481aa8e 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)inet.c     4.19 (Berkeley) 85/06/03";
-#endif
+static char sccsid[] = "@(#)inet.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 #include <sys/types.h>
 #include <sys/socket.h>
 
 #include <sys/types.h>
 #include <sys/socket.h>
index 1998ec7..1fb1540 100644 (file)
@@ -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
 #ifndef lint
-static char sccsid[] = "@(#)main.c     4.13 (Berkeley) 84/11/20";
-#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[] = "@(#)main.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 #include <sys/param.h>
 #include <sys/vmmac.h>
 
 #include <sys/param.h>
 #include <sys/vmmac.h>
index d1b84c8..f3af9be 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)mbuf.c     4.8 85/04/07";
-#endif
+static char sccsid[] = "@(#)mbuf.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 #include <stdio.h>
 #include <sys/param.h>
 
 #include <stdio.h>
 #include <sys/param.h>
index 04213b8..f947e90 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)route.c    4.10 85/06/03";
-#endif
+static char sccsid[] = "@(#)route.c    5.1 (Berkeley) %G%";
+#endif not lint
 
 #include <sys/types.h>
 #include <sys/socket.h>
 
 #include <sys/types.h>
 #include <sys/socket.h>
index 54efe3f..351a10d 100644 (file)
@@ -1,6 +1,12 @@
+/*
+ * 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
 #ifndef lint
-static char sccsid[] = "@(#)unix.c     1.1 (Berkeley) %G%";
-#endif
+static char sccsid[] = "@(#)unix.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * Display protocol blocks in the unix domain.
 
 /*
  * Display protocol blocks in the unix domain.
index d59d3e6..939d29f 100644 (file)
@@ -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
 #ifndef lint
-static char *sccsid = "@(#)pstat.c     4.30 (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[] = "@(#)pstat.c    5.1 (Berkeley) %G%";
+#endif not lint
+
 /*
  * Print system stuff
  */
 /*
  * Print system stuff
  */
index 36a4866..489b454 100644 (file)
@@ -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
 #ifndef lint
-static char sccsid[] = "@(#)trpt.c     4.12 %G%";
-#endif
+static char sccsid[] = "@(#)trpt.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 #include <sys/param.h>
 #include <sys/socket.h>
 
 #include <sys/param.h>
 #include <sys/socket.h>