From c0bc4ef79adcbef5c0dd64f43a0df45deb93bae3 Mon Sep 17 00:00:00 2001 From: Distribution Folks Date: Tue, 4 Jun 1985 20:37:21 -0800 Subject: [PATCH] Add copyright SCCS-vsn: usr.bin/gprof/arcs.c 5.1 SCCS-vsn: usr.bin/gprof/vax.c 5.1 SCCS-vsn: usr.bin/gprof/dfn.c 5.1 SCCS-vsn: usr.bin/gprof/gprof.c 5.1 SCCS-vsn: usr.bin/gprof/hertz.c 5.1 SCCS-vsn: usr.bin/gprof/lookup.c 5.1 SCCS-vsn: usr.bin/gprof/printgprof.c 5.1 SCCS-vsn: usr.bin/gprof/printlist.c 5.1 SCCS-vsn: usr.bin/gprof/gprof.h 5.1 SCCS-vsn: usr.bin/gprof/vax.h 5.1 SCCS-vsn: usr.bin/gprof/Makefile 5.1 SCCS-vsn: usr.bin/indent/indent.c 5.1 SCCS-vsn: usr.bin/indent/io.c 5.1 SCCS-vsn: usr.bin/indent/lexi.c 5.1 SCCS-vsn: usr.bin/indent/parse.c 5.1 SCCS-vsn: usr.bin/indent/pr_comment.c 5.1 --- usr/src/usr.bin/gprof/Makefile | 9 ++++++++- usr/src/usr.bin/gprof/arcs.c | 10 ++++++++-- usr/src/usr.bin/gprof/dfn.c | 10 ++++++++-- usr/src/usr.bin/gprof/gprof.c | 16 ++++++++++++++-- usr/src/usr.bin/gprof/gprof.h | 8 +++++++- usr/src/usr.bin/gprof/hertz.c | 10 ++++++++-- usr/src/usr.bin/gprof/lookup.c | 10 ++++++++-- usr/src/usr.bin/gprof/printgprof.c | 10 ++++++++-- usr/src/usr.bin/gprof/printlist.c | 10 ++++++++-- usr/src/usr.bin/gprof/vax.c | 8 +++++++- usr/src/usr.bin/gprof/vax.h | 8 +++++++- usr/src/usr.bin/indent/indent.c | 16 +++++++++++++++- usr/src/usr.bin/indent/io.c | 10 +++++++++- usr/src/usr.bin/indent/lexi.c | 10 +++++++++- usr/src/usr.bin/indent/parse.c | 10 +++++++++- usr/src/usr.bin/indent/pr_comment.c | 10 +++++++++- 16 files changed, 142 insertions(+), 23 deletions(-) diff --git a/usr/src/usr.bin/gprof/Makefile b/usr/src/usr.bin/gprof/Makefile index b7ef64081c..fe358e5c52 100644 --- a/usr/src/usr.bin/gprof/Makefile +++ b/usr/src/usr.bin/gprof/Makefile @@ -1,4 +1,11 @@ -SCCSID = @(#)Makefile 1.22 (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% +# +SCCSID = @(#)Makefile 5.1 (Berkeley) %G% DFLAGS = CFLAGS = -O ${DFLAGS} diff --git a/usr/src/usr.bin/gprof/arcs.c b/usr/src/usr.bin/gprof/arcs.c index f6033349ca..ba4a065c6c 100644 --- a/usr/src/usr.bin/gprof/arcs.c +++ b/usr/src/usr.bin/gprof/arcs.c @@ -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 - static char *sccsid = "@(#)arcs.c 1.15 (Berkeley) %G%"; -#endif lint +static char sccsid[] = "@(#)arcs.c 5.1 (Berkeley) %G%"; +#endif not lint #include "gprof.h" diff --git a/usr/src/usr.bin/gprof/dfn.c b/usr/src/usr.bin/gprof/dfn.c index 9ce1d04cd8..254c07571f 100644 --- a/usr/src/usr.bin/gprof/dfn.c +++ b/usr/src/usr.bin/gprof/dfn.c @@ -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 - static char *sccsid = "@(#)dfn.c 1.3 (Berkeley) %G%"; -#endif lint +static char sccsid[] = "@(#)dfn.c 5.1 (Berkeley) %G%"; +#endif not lint #include #include "gprof.h" diff --git a/usr/src/usr.bin/gprof/gprof.c b/usr/src/usr.bin/gprof/gprof.c index a382081edc..5b6d550bdb 100644 --- a/usr/src/usr.bin/gprof/gprof.c +++ b/usr/src/usr.bin/gprof/gprof.c @@ -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 - static char *sccsid = "@(#)gprof.c 1.24 (Berkeley) %G%"; -#endif lint +static char sccsid[] = "@(#)gprof.c 5.1 (Berkeley) %G%"; +#endif not lint #include "gprof.h" diff --git a/usr/src/usr.bin/gprof/gprof.h b/usr/src/usr.bin/gprof/gprof.h index fd0239ea18..e4e8a7b983 100644 --- a/usr/src/usr.bin/gprof/gprof.h +++ b/usr/src/usr.bin/gprof/gprof.h @@ -1,4 +1,10 @@ -/* gprof.h 1.21 84/08/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. + * + * @(#)gprof.h 5.1 (Berkeley) %G% + */ #include #include diff --git a/usr/src/usr.bin/gprof/hertz.c b/usr/src/usr.bin/gprof/hertz.c index dc779b9a46..7588c28773 100644 --- a/usr/src/usr.bin/gprof/hertz.c +++ b/usr/src/usr.bin/gprof/hertz.c @@ -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 - static char *sccsid = "@(#)hertz.c 1.4 (Berkeley) %G%"; -#endif lint +static char sccsid[] = "@(#)hertz.c 5.1 (Berkeley) %G%"; +#endif not lint #include diff --git a/usr/src/usr.bin/gprof/lookup.c b/usr/src/usr.bin/gprof/lookup.c index fd7ac440dc..fc22d285bd 100644 --- a/usr/src/usr.bin/gprof/lookup.c +++ b/usr/src/usr.bin/gprof/lookup.c @@ -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 - static char *sccsid = "@(#)lookup.c 1.3 (Berkeley) %G%"; -#endif lint +static char sccsid[] = "@(#)lookup.c 5.1 (Berkeley) %G%"; +#endif not lint #include "gprof.h" diff --git a/usr/src/usr.bin/gprof/printgprof.c b/usr/src/usr.bin/gprof/printgprof.c index b1445c5986..d182c971ef 100644 --- a/usr/src/usr.bin/gprof/printgprof.c +++ b/usr/src/usr.bin/gprof/printgprof.c @@ -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 - static char *sccsid = "@(#)printgprof.c 1.15 (Berkeley) %G%"; -#endif lint +static char sccsid[] = "@(#)printgprof.c 5.1 (Berkeley) %G%"; +#endif not lint #include "gprof.h" diff --git a/usr/src/usr.bin/gprof/printlist.c b/usr/src/usr.bin/gprof/printlist.c index 3b2dac5e27..a6e42c2cbc 100644 --- a/usr/src/usr.bin/gprof/printlist.c +++ b/usr/src/usr.bin/gprof/printlist.c @@ -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 - static char *sccsid = "@(#)printlist.c 1.2 (Berkeley) %G%"; -#endif lint +static char sccsid[] = "@(#)printlist.c 5.1 (Berkeley) %G%"; +#endif not lint #include "gprof.h" diff --git a/usr/src/usr.bin/gprof/vax.c b/usr/src/usr.bin/gprof/vax.c index 5c8788c781..3153e348bb 100644 --- a/usr/src/usr.bin/gprof/vax.c +++ b/usr/src/usr.bin/gprof/vax.c @@ -1,5 +1,11 @@ +/* + * 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 - static char *sccsid = "@(#)vax.c 1.4 (Berkeley) %G%"; +static char sccsid[] = "@(#)vax.c 5.1 (Berkeley) %G%"; #endif not lint #include "gprof.h" diff --git a/usr/src/usr.bin/gprof/vax.h b/usr/src/usr.bin/gprof/vax.h index 7374312a5a..5aa58a5a90 100644 --- a/usr/src/usr.bin/gprof/vax.h +++ b/usr/src/usr.bin/gprof/vax.h @@ -1,4 +1,10 @@ -/* vax.h 1.3 83/08/11 */ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + * + * @(#)vax.h 5.1 (Berkeley) %G% + */ /* * opcode of the `calls' instruction diff --git a/usr/src/usr.bin/indent/indent.c b/usr/src/usr.bin/indent/indent.c index f90c0e5b36..e0ce3e74c6 100644 --- a/usr/src/usr.bin/indent/indent.c +++ b/usr/src/usr.bin/indent/indent.c @@ -1,4 +1,18 @@ -static char sccsid[] = "@(#)indent.c 4.1 (Berkeley) %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 +char copyright[] = +"@(#) Copyright (c) 1980 Regents of the University of California.\n\ + All rights reserved.\n"; +#endif not lint + +#ifndef lint +static char sccsid[] = "@(#)indent.c 5.1 (Berkeley) %G%"; +#endif not lint /* diff --git a/usr/src/usr.bin/indent/io.c b/usr/src/usr.bin/indent/io.c index 715a83666f..e86f3cc77b 100644 --- a/usr/src/usr.bin/indent/io.c +++ b/usr/src/usr.bin/indent/io.c @@ -1,4 +1,12 @@ -static char sccsid[] = "@(#)io.c 4.1 (Berkeley) %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[] = "@(#)io.c 5.1 (Berkeley) %G%"; +#endif not lint /* diff --git a/usr/src/usr.bin/indent/lexi.c b/usr/src/usr.bin/indent/lexi.c index 22fa4ebe13..c18a544aeb 100644 --- a/usr/src/usr.bin/indent/lexi.c +++ b/usr/src/usr.bin/indent/lexi.c @@ -1,4 +1,12 @@ -static char sccsid[] = "@(#)lexi.c 4.1 (Berkeley) %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[] = "@(#)lexi.c 5.1 (Berkeley) %G%"; +#endif not lint /* diff --git a/usr/src/usr.bin/indent/parse.c b/usr/src/usr.bin/indent/parse.c index 4a313460b6..89d8de2022 100644 --- a/usr/src/usr.bin/indent/parse.c +++ b/usr/src/usr.bin/indent/parse.c @@ -1,4 +1,12 @@ -static char sccsid[] = "@(#)parse.c 4.1 (Berkeley) %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[] = "@(#)parse.c 5.1 (Berkeley) %G%"; +#endif not lint /* diff --git a/usr/src/usr.bin/indent/pr_comment.c b/usr/src/usr.bin/indent/pr_comment.c index e1abb7e3bc..2032a303fd 100644 --- a/usr/src/usr.bin/indent/pr_comment.c +++ b/usr/src/usr.bin/indent/pr_comment.c @@ -1,4 +1,12 @@ -static char sccsid[] = "@(#)pr_comment.c 4.1 (Berkeley) %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[] = "@(#)pr_comment.c 5.1 (Berkeley) %G%"; +#endif not lint /* -- 2.20.1