From 5ff78ede5ea1a80c654d3f0684cd5f36d5253ae1 Mon Sep 17 00:00:00 2001 From: cgd Date: Tue, 21 Mar 1995 15:03:38 +0000 Subject: clean up import --- backgammon/backgammon/Makefile | 4 ++-- backgammon/backgammon/backgammon.6 | 11 ++++++----- backgammon/backgammon/extra.c | 13 +++++++++---- backgammon/backgammon/main.c | 6 ++++++ backgammon/backgammon/move.c | 13 +++++++++---- backgammon/backgammon/text.c | 13 +++++++++---- backgammon/backgammon/version.c | 13 +++++++++---- 7 files changed, 50 insertions(+), 23 deletions(-) (limited to 'backgammon/backgammon') diff --git a/backgammon/backgammon/Makefile b/backgammon/backgammon/Makefile index dac0323b..47367b33 100644 --- a/backgammon/backgammon/Makefile +++ b/backgammon/backgammon/Makefile @@ -1,5 +1,5 @@ -# from: @(#)Makefile 5.16 (Berkeley) 5/11/90 -# $Id: Makefile,v 1.5 1994/12/22 09:32:52 cgd Exp $ +# $NetBSD: Makefile,v 1.6 1995/03/21 15:04:52 cgd Exp $ +# @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= backgammon CFLAGS+=-DV7 -I${.CURDIR}/../common_source diff --git a/backgammon/backgammon/backgammon.6 b/backgammon/backgammon/backgammon.6 index 4b4b3641..c1b439c6 100644 --- a/backgammon/backgammon/backgammon.6 +++ b/backgammon/backgammon/backgammon.6 @@ -1,5 +1,7 @@ -.\" Copyright (c) 1980 Regents of the University of California. -.\" All rights reserved. +.\" $NetBSD: backgammon.6,v 1.4 1995/03/21 15:04:55 cgd Exp $ +.\" +.\" Copyright (c) 1980, 1993 +.\" The Regents of the University of California. All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions @@ -29,10 +31,9 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" from: @(#)backgammon.6 6.6 (Berkeley) 8/3/91 -.\" $Id: backgammon.6,v 1.3 1993/08/05 04:16:58 jtc Exp $ +.\" @(#)backgammon.6 8.1 (Berkeley) 5/31/93 .\" -.Dd August 3, 1991 +.Dd May 31, 1993 .Dt BACKGAMMON 6 .Os .Sh NAME diff --git a/backgammon/backgammon/extra.c b/backgammon/backgammon/extra.c index b9507a3e..034c959f 100644 --- a/backgammon/backgammon/extra.c +++ b/backgammon/backgammon/extra.c @@ -1,6 +1,8 @@ +/* $NetBSD: extra.c,v 1.3 1995/03/21 15:05:01 cgd Exp $ */ + /* - * Copyright (c) 1980 Regents of the University of California. - * All rights reserved. + * Copyright (c) 1980, 1993 + * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -32,8 +34,11 @@ */ #ifndef lint -/*static char sccsid[] = "from: @(#)extra.c 5.4 (Berkeley) 6/1/90";*/ -static char rcsid[] = "$Id: extra.c,v 1.2 1993/08/01 18:56:54 mycroft Exp $"; +#if 0 +static char sccsid[] = "@(#)extra.c 8.1 (Berkeley) 5/31/93"; +#else +static char rcsid[] = "$NetBSD: extra.c,v 1.3 1995/03/21 15:05:01 cgd Exp $"; +#endif #endif /* not lint */ #include "back.h" diff --git a/backgammon/backgammon/main.c b/backgammon/backgammon/main.c index 0102a92c..44cf07bb 100644 --- a/backgammon/backgammon/main.c +++ b/backgammon/backgammon/main.c @@ -1,3 +1,5 @@ +/* $NetBSD: main.c,v 1.2 1995/03/21 15:05:06 cgd Exp $ */ + /* * Copyright (c) 1980, 1993 * The Regents of the University of California. All rights reserved. @@ -38,7 +40,11 @@ static char copyright[] = #endif /* not lint */ #ifndef lint +#if 0 static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93"; +#else +static char rcsid[] = "$NetBSD: main.c,v 1.2 1995/03/21 15:05:06 cgd Exp $"; +#endif #endif /* not lint */ #include diff --git a/backgammon/backgammon/move.c b/backgammon/backgammon/move.c index e0f1521c..1f437feb 100644 --- a/backgammon/backgammon/move.c +++ b/backgammon/backgammon/move.c @@ -1,6 +1,8 @@ +/* $NetBSD: move.c,v 1.4 1995/03/21 15:05:10 cgd Exp $ */ + /* - * Copyright (c) 1980 Regents of the University of California. - * All rights reserved. + * Copyright (c) 1980, 1993 + * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -32,8 +34,11 @@ */ #ifndef lint -/*static char sccsid[] = "from: @(#)move.c 5.6 (Berkeley) 6/1/90";*/ -static char rcsid[] = "$Id: move.c,v 1.3 1993/12/03 09:32:55 mycroft Exp $"; +#if 0 +static char sccsid[] = "@(#)move.c 8.1 (Berkeley) 5/31/93"; +#else +static char rcsid[] = "$NetBSD: move.c,v 1.4 1995/03/21 15:05:10 cgd Exp $"; +#endif #endif /* not lint */ #include "back.h" diff --git a/backgammon/backgammon/text.c b/backgammon/backgammon/text.c index 3f55ae24..8dbe621d 100644 --- a/backgammon/backgammon/text.c +++ b/backgammon/backgammon/text.c @@ -1,6 +1,8 @@ +/* $NetBSD: text.c,v 1.3 1995/03/21 15:05:13 cgd Exp $ */ + /* - * Copyright (c) 1980 Regents of the University of California. - * All rights reserved. + * Copyright (c) 1980, 1993 + * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -32,8 +34,11 @@ */ #ifndef lint -/*static char sccsid[] = "from: @(#)text.c 5.4 (Berkeley) 6/1/90";*/ -static char rcsid[] = "$Id: text.c,v 1.2 1993/08/01 18:56:53 mycroft Exp $"; +#if 0 +static char sccsid[] = "@(#)text.c 8.1 (Berkeley) 5/31/93"; +#else +static char rcsid[] = "$NetBSD: text.c,v 1.3 1995/03/21 15:05:13 cgd Exp $"; +#endif #endif /* not lint */ #include "back.h" diff --git a/backgammon/backgammon/version.c b/backgammon/backgammon/version.c index 6b4dd35d..504c5960 100644 --- a/backgammon/backgammon/version.c +++ b/backgammon/backgammon/version.c @@ -1,6 +1,8 @@ +/* $NetBSD: version.c,v 1.3 1995/03/21 15:05:16 cgd Exp $ */ + /* - * Copyright (c) 1980, 1987 Regents of the University of California. - * All rights reserved. + * Copyright (c) 1980, 1987, 1993 + * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -32,8 +34,11 @@ */ #ifndef lint -/*static char sccsid[] = "from: @(#)version.c 1.4 (Berkeley) 6/1/90";*/ -static char rcsid[] = "$Id: version.c,v 1.2 1993/08/01 18:56:52 mycroft Exp $"; +#if 0 +static char sccsid[] = "@(#)version.c 8.1 (Berkeley) 5/31/93"; +#else +static char rcsid[] = "$NetBSD: version.c,v 1.3 1995/03/21 15:05:16 cgd Exp $"; +#endif #endif /* not lint */ char *message[] = { -- cgit v1.2.3-56-ge451