Add copyright
authorDistribution Folks <dist@ucbvax.Berkeley.EDU>
Thu, 6 Jun 1985 05:23:01 +0000 (21:23 -0800)
committerDistribution Folks <dist@ucbvax.Berkeley.EDU>
Thu, 6 Jun 1985 05:23:01 +0000 (21:23 -0800)
SCCS-vsn: usr.bin/pascal/src/clas.c 5.2
SCCS-vsn: usr.bin/pascal/px/utilities.c 5.1
SCCS-vsn: usr.bin/pascal/px/version.c 5.1
SCCS-vsn: usr.bin/pascal/px/machdep.h 5.1
SCCS-vsn: usr.bin/pascal/src/const.c 5.1
SCCS-vsn: usr.bin/pascal/px/vars.h 5.1
SCCS-vsn: usr.bin/pascal/src/conv.c 5.1
SCCS-vsn: usr.bin/pascal/src/cset.c 5.1
SCCS-vsn: usr.bin/pascal/src/error.c 5.1
SCCS-vsn: usr.bin/pascal/px/interp.c 5.2
SCCS-vsn: usr.bin/pascal/src/fdec.c 5.1
SCCS-vsn: usr.bin/pascal/src/fend.c 5.1
SCCS-vsn: usr.bin/pascal/src/fhdr.c 5.1
SCCS-vsn: usr.bin/pascal/src/flvalue.c 5.1
SCCS-vsn: usr.bin/pascal/src/forop.c 5.1
SCCS-vsn: usr.bin/pascal/src/func.c 5.1
SCCS-vsn: usr.bin/pascal/src/gen.c 5.1
SCCS-vsn: usr.bin/pascal/src/hash.c 5.1
SCCS-vsn: usr.bin/pascal/px/Makefile 5.1
SCCS-vsn: usr.bin/pascal/src/lab.c 5.1
SCCS-vsn: usr.bin/pascal/px/READ_ME 5.1
SCCS-vsn: usr.bin/pascal/src/lookup.c 5.1
SCCS-vsn: usr.bin/pascal/src/lval.c 5.1

23 files changed:
usr/src/usr.bin/pascal/px/Makefile
usr/src/usr.bin/pascal/px/READ_ME
usr/src/usr.bin/pascal/px/interp.c
usr/src/usr.bin/pascal/px/machdep.h
usr/src/usr.bin/pascal/px/utilities.c
usr/src/usr.bin/pascal/px/vars.h
usr/src/usr.bin/pascal/px/version.c
usr/src/usr.bin/pascal/src/clas.c
usr/src/usr.bin/pascal/src/const.c
usr/src/usr.bin/pascal/src/conv.c
usr/src/usr.bin/pascal/src/cset.c
usr/src/usr.bin/pascal/src/error.c
usr/src/usr.bin/pascal/src/fdec.c
usr/src/usr.bin/pascal/src/fend.c
usr/src/usr.bin/pascal/src/fhdr.c
usr/src/usr.bin/pascal/src/flvalue.c
usr/src/usr.bin/pascal/src/forop.c
usr/src/usr.bin/pascal/src/func.c
usr/src/usr.bin/pascal/src/gen.c
usr/src/usr.bin/pascal/src/hash.c
usr/src/usr.bin/pascal/src/lab.c
usr/src/usr.bin/pascal/src/lookup.c
usr/src/usr.bin/pascal/src/lval.c

index 7bb33a7..dc5e0ca 100644 (file)
@@ -1,4 +1,11 @@
-SCCSID = "@(#)Makefile 2.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%
+#
+SCCSID = "@(#)Makefile 5.1 %G%"
 
 DESTDIR =
 BINDIR = /usr/ucb
 
 DESTDIR =
 BINDIR = /usr/ucb
index 1eaa280..31e175a 100644 (file)
@@ -1,6 +1,8 @@
-Copyright (c) 1979 Regents of the University of California
+Copyright (c) 1980 Regents of the University of California.
+All rights reserved.  The Berkeley software License Agreement
+specifies the terms and conditions for redistribution.
 
 
-sccsid = "@(#)READ_ME 2.1 %G%"
+sccsid = "@(#)READ_ME 5.1 %G%"
 
    This directory contains the source code for the Version 7 VAX
 interpreter for Pascal. Following standard convensions, the makefile
 
    This directory contains the source code for the Version 7 VAX
 interpreter for Pascal. Following standard convensions, the makefile
index 42ba9f8..96af00d 100644 (file)
@@ -5,7 +5,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)interp.c   5.1 (Berkeley) %G%";
+static char sccsid[] = "@(#)interp.c   5.2 (Berkeley) %G%";
 #endif not lint
 
 #include <math.h>
 #endif not lint
 
 #include <math.h>
index fa612b2..60cc742 100644 (file)
@@ -1,6 +1,10 @@
-/* Copyright (c) 1979 Regents of the University of California */
-
-/* static char sccsid[] = "@(#)machdep.h 2.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.
+ *
+ *     @(#)machdep.h   5.1 (Berkeley) %G%
+ */
 
 #ifdef ADDR32
 #define pushaddr push4
 
 #ifdef ADDR32
 #define pushaddr push4
index 224dafd..1430f4f 100644 (file)
@@ -1,6 +1,12 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
 
 
-static char sccsid[] = "@(#)utilities.c 2.1 %G%";
+#ifndef lint
+static char sccsid[] = "@(#)utilities.c        5.1 (Berkeley) %G%";
+#endif not lint
 
 #include       <signal.h>
 #include       "whoami.h"
 
 #include       <signal.h>
 #include       "whoami.h"
index ca79ddd..68c8bf1 100644 (file)
@@ -1,6 +1,10 @@
-/* Copyright (c) 1979 Regents of the University of California */
-
-/* static char sccsid[] = "@(#)vars.h 2.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.
+ *
+ *     @(#)vars.h      5.1 (Berkeley) %G%
+ */
 
 #include <stdio.h>
 
 
 #include <stdio.h>
 
index dfc12da..1fb801f 100644 (file)
@@ -1,6 +1,18 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
 
 
-static char sccsid[] = "@(#)version.c 2.1 %G%";
+#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[] = "@(#)version.c  5.1 (Berkeley) %G%";
+#endif not lint
 
     /*
      * this writes the declaration of the current time stamp
 
     /*
      * this writes the declaration of the current time stamp
index 107870e..8dd2b5e 100644 (file)
@@ -5,15 +5,8 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)clas.c     5.1 (Berkeley) %G%";
+static char sccsid[] = "@(#)clas.c     5.2 (Berkeley) %G%";
 #endif not lint
 #endif not lint
-
-/* Copyright (c) 1979 Regents of the University of California */
-
-#ifndef lint
-static char sccsid[] = "@(#)clas.c 5.1 %G%";
-#endif
-
 #include "whoami.h"
 #include "0.h"
 #include "tree.h"
 #include "whoami.h"
 #include "0.h"
 #include "tree.h"
index 021f88f..dbd325d 100644 (file)
@@ -1,7 +1,12 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)const.c 2.2 %G%";
+static char sccsid[] = "@(#)const.c    5.1 (Berkeley) %G%";
+#endif not lint
 #endif
 
 #include "whoami.h"
 #endif
 
 #include "whoami.h"
index c6a8660..cf2ffa4 100644 (file)
@@ -1,8 +1,12 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)conv.c 2.2 %G%";
-#endif
+static char sccsid[] = "@(#)conv.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 #include "whoami.h"
 #ifdef PI
 
 #include "whoami.h"
 #ifdef PI
index 28e00eb..d27ca6e 100644 (file)
@@ -1,8 +1,12 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)cset.c 2.2 %G%";
-#endif
+static char sccsid[] = "@(#)cset.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 #include "whoami.h"
 #include "0.h"
 
 #include "whoami.h"
 #include "0.h"
index dba289c..6e14e69 100644 (file)
@@ -1,8 +1,12 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)error.c 2.1 %G%";
-#endif
+static char sccsid[] = "@(#)error.c    5.1 (Berkeley) %G%";
+#endif not lint
 
 #include "whoami.h"
 #include "0.h"
 
 #include "whoami.h"
 #include "0.h"
index 150cafd..3989ee1 100644 (file)
@@ -1,8 +1,13 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)fdec.c 2.2 %G%";
-#endif
+static char sccsid[] = "@(#)fdec.c     5.1 (Berkeley) %G%";
+#endif not lint
+
 
 #include "whoami.h"
 #include "0.h"
 
 #include "whoami.h"
 #include "0.h"
index 0a975a1..f4ca2b7 100644 (file)
@@ -1,8 +1,12 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)fend.c 2.3 %G%";
-#endif
+static char sccsid[] = "@(#)fend.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 #include "whoami.h"
 #include "0.h"
 
 #include "whoami.h"
 #include "0.h"
index 1bd78ab..44e989a 100644 (file)
@@ -1,8 +1,12 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)fhdr.c 2.3 %G%";
-#endif
+static char sccsid[] = "@(#)fhdr.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 #include "whoami.h"
 #include "0.h"
 
 #include "whoami.h"
 #include "0.h"
index 11fb734..34c7f34 100644 (file)
@@ -1,8 +1,12 @@
-/* Copyright (c) 1980 Regents of the University of California */
+/*
+ * 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[] = "@(#)flvalue.c 2.2 %G%";
-#endif
+static char sccsid[] = "@(#)flvalue.c  5.1 (Berkeley) %G%";
+#endif not lint
 
 #include "whoami.h"
 #include "0.h"
 
 #include "whoami.h"
 #include "0.h"
index f2d350c..3a6ee31 100644 (file)
@@ -1,9 +1,13 @@
-
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)forop.c    2.2     (Berkeley)      85/03/20";
-#endif
+static char sccsid[] = "@(#)forop.c    5.1 (Berkeley) %G%";
+#endif not lint
+
 
 #include       "whoami.h"
 #include       "0.h"
 
 #include       "whoami.h"
 #include       "0.h"
index df678d5..e23e9ce 100644 (file)
@@ -1,8 +1,13 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)func.c 2.1 %G%";
-#endif
+static char sccsid[] = "@(#)func.c     5.1 (Berkeley) %G%";
+#endif not lint
+
 
 #include "whoami.h"
 #ifdef OBJ
 
 #include "whoami.h"
 #ifdef OBJ
index 186b0dd..bc5a182 100644 (file)
@@ -1,8 +1,12 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)gen.c 2.1 %G%";
-#endif
+static char sccsid[] = "@(#)gen.c      5.1 (Berkeley) %G%";
+#endif not lint
 
 #include "whoami.h"
 #ifdef OBJ
 
 #include "whoami.h"
 #ifdef OBJ
index 20963bc..8f82a14 100644 (file)
@@ -1,8 +1,12 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)hash.c 2.1 %G%";
-#endif
+static char sccsid[] = "@(#)hash.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 #include "whoami.h"
 #include "0.h"
 
 #include "whoami.h"
 #include "0.h"
index f39350e..770d27f 100644 (file)
@@ -1,8 +1,12 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)lab.c 2.2 %G%";
-#endif
+static char sccsid[] = "@(#)lab.c      5.1 (Berkeley) %G%";
+#endif not lint
 
 #include "whoami.h"
 #include "0.h"
 
 #include "whoami.h"
 #include "0.h"
index 55cca7f..189c361 100644 (file)
@@ -1,8 +1,12 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)lookup.c 2.1 %G%";
-#endif
+static char sccsid[] = "@(#)lookup.c   5.1 (Berkeley) %G%";
+#endif not lint
 
 #include "whoami.h"
 #include "0.h"
 
 #include "whoami.h"
 #include "0.h"
index 84bc570..90795c7 100644 (file)
@@ -1,8 +1,12 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/*
+ * 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[] = "@(#)lval.c 2.2 %G%";
-#endif
+static char sccsid[] = "@(#)lval.c     5.1 (Berkeley) %G%";
+#endif not lint
 
 #include "whoami.h"
 #include "0.h"
 
 #include "whoami.h"
 #include "0.h"