Add copyright
authorDistribution Folks <dist@ucbvax.Berkeley.EDU>
Thu, 6 Jun 1985 08:00:12 +0000 (00:00 -0800)
committerDistribution Folks <dist@ucbvax.Berkeley.EDU>
Thu, 6 Jun 1985 08:00:12 +0000 (00:00 -0800)
SCCS-vsn: usr.bin/pascal/pdx/breakpoint/bp.c 5.1
SCCS-vsn: usr.bin/pascal/pdx/breakpoint/bpact.c 5.1
SCCS-vsn: usr.bin/pascal/pdx/breakpoint/fixbps.c 5.1
SCCS-vsn: usr.bin/pascal/pdx/breakpoint/printnews.c 5.1
SCCS-vsn: usr.bin/pascal/pdx/breakpoint/setbps.c 5.1
SCCS-vsn: usr.bin/pascal/pdx/breakpoint/status.c 5.1
SCCS-vsn: usr.bin/pascal/pdx/breakpoint/trcond.c 5.1
SCCS-vsn: usr.bin/pascal/pdx/breakpoint/trinfo.c 5.1

usr/src/usr.bin/pascal/pdx/breakpoint/bp.c
usr/src/usr.bin/pascal/pdx/breakpoint/bpact.c
usr/src/usr.bin/pascal/pdx/breakpoint/fixbps.c
usr/src/usr.bin/pascal/pdx/breakpoint/printnews.c
usr/src/usr.bin/pascal/pdx/breakpoint/setbps.c
usr/src/usr.bin/pascal/pdx/breakpoint/status.c
usr/src/usr.bin/pascal/pdx/breakpoint/trcond.c
usr/src/usr.bin/pascal/pdx/breakpoint/trinfo.c

index ac193f5..c592789 100644 (file)
@@ -1,6 +1,12 @@
-/* Copyright (c) 1982 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[] = "@(#)bp.c 1.1 %G%";
+#ifndef lint
+static char sccsid[] = "@(#)bp.c       5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * Direct management of bpinfo structures.
 
 /*
  * Direct management of bpinfo structures.
index f1893bd..b128fe2 100644 (file)
@@ -1,7 +1,12 @@
-/* Copyright (c) 1982 Regents of the University of California */
-
-static char sccsid[] = "@(#)bpact.c 1.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.
+ */
 
 
+#ifndef lint
+static char sccsid[] = "@(#)bpact.c    5.1 (Berkeley) %G%";
+#endif not lint
 /*
  * Routines for doing the right thing when a breakpoint is reached.
  */
 /*
  * Routines for doing the right thing when a breakpoint is reached.
  */
index 2489a16..6143773 100644 (file)
@@ -1,7 +1,12 @@
-/* Copyright (c) 1982 Regents of the University of California */
-
-static char sccsid[] = "@(#)fixbps.c 1.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.
+ */
 
 
+#ifndef lint
+static char sccsid[] = "@(#)fixbps.c   5.1 (Berkeley) %G%";
+#endif not lint
 /*
  * fix up breakpoint information before continuing execution
  *
 /*
  * fix up breakpoint information before continuing execution
  *
index 0f8228c..d62a40a 100644 (file)
@@ -1,6 +1,12 @@
-/* Copyright (c) 1982 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[] = "@(#)printnews.c 1.2 %G%";
+#ifndef lint
+static char sccsid[] = "@(#)printnews.c        5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * Print out news during single step tracing.
 
 /*
  * Print out news during single step tracing.
index 8f4f8c0..a8b8282 100644 (file)
@@ -1,7 +1,12 @@
-/* Copyright (c) 1982 Regents of the University of California */
-
-static char sccsid[] = "@(#)setbps.c 1.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.
+ */
 
 
+#ifndef lint
+static char sccsid[] = "@(#)setbps.c   5.1 (Berkeley) %G%";
+#endif not lint
 /*
  * set all breakpoints in object code
  */
 /*
  * set all breakpoints in object code
  */
index 4ddad16..c96059e 100644 (file)
@@ -1,7 +1,12 @@
-/* Copyright (c) 1982 Regents of the University of California */
-
-static char sccsid[] = "@(#)status.c 1.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.
+ */
 
 
+#ifndef lint
+static char sccsid[] = "@(#)status.c   5.1 (Berkeley) %G%";
+#endif not lint
 /*
  * Print out what's currently being traced by looking at
  * the currently active breakpoints.
 /*
  * Print out what's currently being traced by looking at
  * the currently active breakpoints.
index 221214f..3850a77 100644 (file)
@@ -1,6 +1,12 @@
-/* Copyright (c) 1982 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[] = "@(#)trcond.c 1.1 %G%";
+#ifndef lint
+static char sccsid[] = "@(#)trcond.c   5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * trace condition list -- a list of conditions that are to be
 
 /*
  * trace condition list -- a list of conditions that are to be
index 0fc07d8..b7b7461 100644 (file)
@@ -1,6 +1,12 @@
-/* Copyright (c) 1982 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[] = "@(#)trinfo.c 1.2 %G%";
+#ifndef lint
+static char sccsid[] = "@(#)trinfo.c   5.1 (Berkeley) %G%";
+#endif not lint
 
 /*
  * Trace information management.
 
 /*
  * Trace information management.