diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-28 00:00:00 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-28 00:00:00 +0000 |
commit | d6f987883e262363e2689803a36a7c32736476cc (patch) | |
tree | 1158893c08ead8fccdd4ac523d3492f68c4c1cda /games/monop | |
parent | 94ea65f5c4b7bedff1d6c9caca5363f926955d43 (diff) |
rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and
unmaintainable). these days, people use source. these id's do not provide
any benefit, and do hurt the small install media
(the 33,000 line diff is essentially mechanical)
ok with the idea millert, ok dms
Diffstat (limited to 'games/monop')
-rw-r--r-- | games/monop/cards.c | 10 | ||||
-rw-r--r-- | games/monop/execute.c | 10 | ||||
-rw-r--r-- | games/monop/getinp.c | 10 | ||||
-rw-r--r-- | games/monop/houses.c | 10 | ||||
-rw-r--r-- | games/monop/initdeck.c | 16 | ||||
-rw-r--r-- | games/monop/jail.c | 10 | ||||
-rw-r--r-- | games/monop/misc.c | 10 | ||||
-rw-r--r-- | games/monop/monop.c | 16 | ||||
-rw-r--r-- | games/monop/morg.c | 10 | ||||
-rw-r--r-- | games/monop/print.c | 10 | ||||
-rw-r--r-- | games/monop/prop.c | 10 | ||||
-rw-r--r-- | games/monop/rent.c | 10 | ||||
-rw-r--r-- | games/monop/roll.c | 10 | ||||
-rw-r--r-- | games/monop/spec.c | 10 | ||||
-rw-r--r-- | games/monop/trade.c | 10 |
15 files changed, 15 insertions, 147 deletions
diff --git a/games/monop/cards.c b/games/monop/cards.c index f82fc03cec8..4ceb220f9cf 100644 --- a/games/monop/cards.c +++ b/games/monop/cards.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cards.c,v 1.8 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: cards.c,v 1.9 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: cards.c,v 1.3 1995/03/23 08:34:35 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)cards.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: cards.c,v 1.8 2003/06/03 03:01:40 millert Exp $"; -#endif -#endif /* not lint */ - #include <err.h> #include "monop.ext" #include "pathnames.h" diff --git a/games/monop/execute.c b/games/monop/execute.c index 34e777bb8df..ee2361447a7 100644 --- a/games/monop/execute.c +++ b/games/monop/execute.c @@ -1,4 +1,4 @@ -/* $OpenBSD: execute.c,v 1.8 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: execute.c,v 1.9 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: execute.c,v 1.3 1995/03/23 08:34:38 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)execute.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: execute.c,v 1.8 2003/06/03 03:01:40 millert Exp $"; -#endif -#endif /* not lint */ - #include "monop.ext" #include <sys/types.h> #include <sys/stat.h> diff --git a/games/monop/getinp.c b/games/monop/getinp.c index f6684fe3465..ad93241656a 100644 --- a/games/monop/getinp.c +++ b/games/monop/getinp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getinp.c,v 1.8 2007/03/02 04:32:32 ray Exp $ */ +/* $OpenBSD: getinp.c,v 1.9 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: getinp.c,v 1.4 1995/04/24 12:24:20 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)getinp.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: getinp.c,v 1.8 2007/03/02 04:32:32 ray Exp $"; -#endif -#endif /* not lint */ - #include <stdio.h> #include <string.h> #include <ctype.h> diff --git a/games/monop/houses.c b/games/monop/houses.c index cf2acd4f31d..bfa62738c7e 100644 --- a/games/monop/houses.c +++ b/games/monop/houses.c @@ -1,4 +1,4 @@ -/* $OpenBSD: houses.c,v 1.7 2008/11/10 18:02:17 sthen Exp $ */ +/* $OpenBSD: houses.c,v 1.8 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: houses.c,v 1.3 1995/03/23 08:34:40 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)houses.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: houses.c,v 1.7 2008/11/10 18:02:17 sthen Exp $"; -#endif -#endif /* not lint */ - # include "monop.ext" static char *names[N_MON+2], diff --git a/games/monop/initdeck.c b/games/monop/initdeck.c index 165f153408e..7b51519108c 100644 --- a/games/monop/initdeck.c +++ b/games/monop/initdeck.c @@ -1,4 +1,4 @@ -/* $OpenBSD: initdeck.c,v 1.12 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: initdeck.c,v 1.13 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: initdeck.c,v 1.3 1995/03/23 08:34:43 cgd Exp $ */ /* @@ -30,20 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char copyright[] = -"@(#) Copyright (c) 1980, 1993\n\ - The Regents of the University of California. All rights reserved.\n"; -#endif /* not lint */ - -#ifndef lint -#if 0 -static char sccsid[] = "@(#)initdeck.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: initdeck.c,v 1.12 2003/06/03 03:01:40 millert Exp $"; -#endif -#endif /* not lint */ - #include <err.h> #include <stdio.h> #include <stdlib.h> diff --git a/games/monop/jail.c b/games/monop/jail.c index ef763f29a3a..c794732d46a 100644 --- a/games/monop/jail.c +++ b/games/monop/jail.c @@ -1,4 +1,4 @@ -/* $OpenBSD: jail.c,v 1.4 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: jail.c,v 1.5 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: jail.c,v 1.3 1995/03/23 08:34:44 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)jail.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: jail.c,v 1.4 2003/06/03 03:01:40 millert Exp $"; -#endif -#endif /* not lint */ - #include "monop.ext" /* diff --git a/games/monop/misc.c b/games/monop/misc.c index 112001987a1..1fc01e0ec19 100644 --- a/games/monop/misc.c +++ b/games/monop/misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.c,v 1.9 2006/03/27 00:10:15 tedu Exp $ */ +/* $OpenBSD: misc.c,v 1.10 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: misc.c,v 1.4 1995/03/23 08:34:47 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: misc.c,v 1.9 2006/03/27 00:10:15 tedu Exp $"; -#endif -#endif /* not lint */ - #include "monop.ext" #include <ctype.h> #include <signal.h> diff --git a/games/monop/monop.c b/games/monop/monop.c index c249c94a01d..918557d13d5 100644 --- a/games/monop/monop.c +++ b/games/monop/monop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: monop.c,v 1.9 2007/09/11 15:21:05 gilles Exp $ */ +/* $OpenBSD: monop.c,v 1.10 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: monop.c,v 1.3 1995/03/23 08:34:52 cgd Exp $ */ /* @@ -30,20 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char copyright[] = -"@(#) Copyright (c) 1980, 1993\n\ - The Regents of the University of California. All rights reserved.\n"; -#endif /* not lint */ - -#ifndef lint -#if 0 -static char sccsid[] = "@(#)monop.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: monop.c,v 1.9 2007/09/11 15:21:05 gilles Exp $"; -#endif -#endif /* not lint */ - #include <err.h> #include <stdlib.h> #include <unistd.h> diff --git a/games/monop/morg.c b/games/monop/morg.c index c7e439bb62d..6172aa2914f 100644 --- a/games/monop/morg.c +++ b/games/monop/morg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: morg.c,v 1.5 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: morg.c,v 1.6 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: morg.c,v 1.4 1995/03/23 08:35:02 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)morg.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: morg.c,v 1.5 2003/06/03 03:01:40 millert Exp $"; -#endif -#endif /* not lint */ - # include "monop.ext" /* diff --git a/games/monop/print.c b/games/monop/print.c index ece2b451b12..52ef3751e3c 100644 --- a/games/monop/print.c +++ b/games/monop/print.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print.c,v 1.5 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: print.c,v 1.6 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: print.c,v 1.3 1995/03/23 08:35:05 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)print.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: print.c,v 1.5 2003/06/03 03:01:40 millert Exp $"; -#endif -#endif /* not lint */ - #include "monop.ext" static const char *header = "Name Own Price Mg # Rent"; diff --git a/games/monop/prop.c b/games/monop/prop.c index a5613b259c3..45f350bc710 100644 --- a/games/monop/prop.c +++ b/games/monop/prop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: prop.c,v 1.6 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: prop.c,v 1.7 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: prop.c,v 1.3 1995/03/23 08:35:06 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)prop.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: prop.c,v 1.6 2003/06/03 03:01:40 millert Exp $"; -#endif -#endif /* not lint */ - #include <err.h> #include "monop.ext" diff --git a/games/monop/rent.c b/games/monop/rent.c index 7b91474cc06..5984bb7c1ba 100644 --- a/games/monop/rent.c +++ b/games/monop/rent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rent.c,v 1.4 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: rent.c,v 1.5 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: rent.c,v 1.3 1995/03/23 08:35:11 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)rent.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: rent.c,v 1.4 2003/06/03 03:01:40 millert Exp $"; -#endif -#endif /* not lint */ - #include "monop.ext" /* diff --git a/games/monop/roll.c b/games/monop/roll.c index fbf0f6cee33..9d7f45967e3 100644 --- a/games/monop/roll.c +++ b/games/monop/roll.c @@ -1,4 +1,4 @@ -/* $OpenBSD: roll.c,v 1.4 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: roll.c,v 1.5 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: roll.c,v 1.5 1995/03/23 08:35:13 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)roll.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: roll.c,v 1.4 2003/06/03 03:01:40 millert Exp $"; -#endif -#endif /* not lint */ - #include <stdlib.h> /* diff --git a/games/monop/spec.c b/games/monop/spec.c index 1bf1552aee9..68f19fe22ff 100644 --- a/games/monop/spec.c +++ b/games/monop/spec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spec.c,v 1.4 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: spec.c,v 1.5 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: spec.c,v 1.3 1995/03/23 08:35:16 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)spec.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: spec.c,v 1.4 2003/06/03 03:01:40 millert Exp $"; -#endif -#endif /* not lint */ - #include "monop.ext" static char *perc[] = { diff --git a/games/monop/trade.c b/games/monop/trade.c index b8155be5873..bb3fe3f5ed2 100644 --- a/games/monop/trade.c +++ b/games/monop/trade.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trade.c,v 1.5 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: trade.c,v 1.6 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: trade.c,v 1.3 1995/03/23 08:35:19 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)trade.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = "$OpenBSD: trade.c,v 1.5 2003/06/03 03:01:40 millert Exp $"; -#endif -#endif /* not lint */ - #include "monop.ext" struct trd_st { /* how much to give to other player */ |