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/robots | |
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/robots')
-rw-r--r-- | games/robots/extern.c | 10 | ||||
-rw-r--r-- | games/robots/init_field.c | 10 | ||||
-rw-r--r-- | games/robots/main.c | 16 | ||||
-rw-r--r-- | games/robots/make_level.c | 10 | ||||
-rw-r--r-- | games/robots/move.c | 10 | ||||
-rw-r--r-- | games/robots/move_robs.c | 10 | ||||
-rw-r--r-- | games/robots/play_level.c | 10 | ||||
-rw-r--r-- | games/robots/query.c | 10 | ||||
-rw-r--r-- | games/robots/rnd_pos.c | 10 | ||||
-rw-r--r-- | games/robots/score.c | 10 |
10 files changed, 10 insertions, 96 deletions
diff --git a/games/robots/extern.c b/games/robots/extern.c index ad0533bdf11..d0cecf34754 100644 --- a/games/robots/extern.c +++ b/games/robots/extern.c @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.c,v 1.4 2003/06/03 03:01:40 millert Exp $ */ +/* $OpenBSD: extern.c,v 1.5 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: extern.c,v 1.3 1995/04/22 10:08:49 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)extern.c 8.1 (Berkeley) 5/31/93"; -#else -static char rcsid[] = "$OpenBSD: extern.c,v 1.4 2003/06/03 03:01:40 millert Exp $"; -#endif -#endif /* not lint */ - #include "robots.h" bool Dead; /* Player is now dead */ diff --git a/games/robots/init_field.c b/games/robots/init_field.c index cd6890285ec..52bde5dd8e0 100644 --- a/games/robots/init_field.c +++ b/games/robots/init_field.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init_field.c,v 1.6 2004/11/29 08:52:28 jsg Exp $ */ +/* $OpenBSD: init_field.c,v 1.7 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: init_field.c,v 1.3 1995/04/22 10:08:52 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)init_field.c 8.1 (Berkeley) 5/31/93"; -#else -static char rcsid[] = "$OpenBSD: init_field.c,v 1.6 2004/11/29 08:52:28 jsg Exp $"; -#endif -#endif /* not lint */ - #include "robots.h" /* diff --git a/games/robots/main.c b/games/robots/main.c index f21294a42b7..0c23a0ac935 100644 --- a/games/robots/main.c +++ b/games/robots/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.16 2005/05/01 02:43:12 djm Exp $ */ +/* $OpenBSD: main.c,v 1.17 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: main.c,v 1.5 1995/04/22 10:08:54 cgd Exp $ */ /* @@ -30,20 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -static 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[] = "@(#)main.c 8.1 (Berkeley) 5/31/93"; -#else -static char rcsid[] = "$OpenBSD: main.c,v 1.16 2005/05/01 02:43:12 djm Exp $"; -#endif -#endif /* not lint */ - #include "robots.h" void diff --git a/games/robots/make_level.c b/games/robots/make_level.c index 12f2e4aa86c..03f34e2d331 100644 --- a/games/robots/make_level.c +++ b/games/robots/make_level.c @@ -1,4 +1,4 @@ -/* $OpenBSD: make_level.c,v 1.6 2004/11/29 08:52:28 jsg Exp $ */ +/* $OpenBSD: make_level.c,v 1.7 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: make_level.c,v 1.3 1995/04/22 10:08:56 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)make_level.c 8.1 (Berkeley) 5/31/93"; -#else -static char rcsid[] = "$OpenBSD: make_level.c,v 1.6 2004/11/29 08:52:28 jsg Exp $"; -#endif -#endif /* not lint */ - #include "robots.h" /* diff --git a/games/robots/move.c b/games/robots/move.c index 73f7f6312d0..c187d268ac4 100644 --- a/games/robots/move.c +++ b/games/robots/move.c @@ -1,4 +1,4 @@ -/* $OpenBSD: move.c,v 1.8 2004/11/29 08:52:28 jsg Exp $ */ +/* $OpenBSD: move.c,v 1.9 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: move.c,v 1.4 1995/04/22 10:08:58 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)move.c 8.1 (Berkeley) 5/31/93"; -#else -static char rcsid[] = "$OpenBSD: move.c,v 1.8 2004/11/29 08:52:28 jsg Exp $"; -#endif -#endif /* not lint */ - #include "robots.h" #define ESC '\033' diff --git a/games/robots/move_robs.c b/games/robots/move_robs.c index 2c5a9ea5403..3939218019d 100644 --- a/games/robots/move_robs.c +++ b/games/robots/move_robs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: move_robs.c,v 1.7 2004/11/29 08:52:28 jsg Exp $ */ +/* $OpenBSD: move_robs.c,v 1.8 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: move_robs.c,v 1.3 1995/04/22 10:08:59 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)move_robs.c 8.1 (Berkeley) 5/31/93"; -#else -static char rcsid[] = "$OpenBSD: move_robs.c,v 1.7 2004/11/29 08:52:28 jsg Exp $"; -#endif -#endif /* not lint */ - #include "robots.h" /* diff --git a/games/robots/play_level.c b/games/robots/play_level.c index f50eaef6f9c..48e9476a1ab 100644 --- a/games/robots/play_level.c +++ b/games/robots/play_level.c @@ -1,4 +1,4 @@ -/* $OpenBSD: play_level.c,v 1.8 2004/11/29 08:52:28 jsg Exp $ */ +/* $OpenBSD: play_level.c,v 1.9 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: play_level.c,v 1.3 1995/04/22 10:09:03 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)play_level.c 8.1 (Berkeley) 5/31/93"; -#else -static char rcsid[] = "$OpenBSD: play_level.c,v 1.8 2004/11/29 08:52:28 jsg Exp $"; -#endif -#endif /* not lint */ - # include "robots.h" /* diff --git a/games/robots/query.c b/games/robots/query.c index 498a8b7f5fb..6f98081b549 100644 --- a/games/robots/query.c +++ b/games/robots/query.c @@ -1,4 +1,4 @@ -/* $OpenBSD: query.c,v 1.5 2004/11/29 08:52:29 jsg Exp $ */ +/* $OpenBSD: query.c,v 1.6 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: query.c,v 1.3 1995/04/22 10:09:05 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)query.c 8.1 (Berkeley) 5/31/93"; -#else -static char rcsid[] = "$OpenBSD: query.c,v 1.5 2004/11/29 08:52:29 jsg Exp $"; -#endif -#endif /* not lint */ - #include "robots.h" /* diff --git a/games/robots/rnd_pos.c b/games/robots/rnd_pos.c index 734abd6c19a..b123430d9c7 100644 --- a/games/robots/rnd_pos.c +++ b/games/robots/rnd_pos.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rnd_pos.c,v 1.4 2004/11/29 08:52:29 jsg Exp $ */ +/* $OpenBSD: rnd_pos.c,v 1.5 2009/10/27 23:59:26 deraadt Exp $ */ /* * Copyright (c) 1980, 1993 @@ -29,14 +29,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)rnd_pos.c 8.1 (Berkeley) 5/31/93"; -#else -static char rcsid[] = "$OpenBSD: rnd_pos.c,v 1.4 2004/11/29 08:52:29 jsg Exp $"; -#endif -#endif /* not lint */ - #include "robots.h" #define IS_SAME(p,y,x) ((p).y != -1 && (p).y == y && (p).x == x) diff --git a/games/robots/score.c b/games/robots/score.c index 2e0ada5d168..2b9fae1532a 100644 --- a/games/robots/score.c +++ b/games/robots/score.c @@ -1,4 +1,4 @@ -/* $OpenBSD: score.c,v 1.9 2004/11/29 08:52:29 jsg Exp $ */ +/* $OpenBSD: score.c,v 1.10 2009/10/27 23:59:26 deraadt Exp $ */ /* $NetBSD: score.c,v 1.3 1995/04/22 10:09:12 cgd Exp $ */ /* @@ -30,14 +30,6 @@ * SUCH DAMAGE. */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)score.c 8.1 (Berkeley) 5/31/93"; -#else -static char rcsid[] = "$OpenBSD: score.c,v 1.9 2004/11/29 08:52:29 jsg Exp $"; -#endif -#endif /* not lint */ - #include "robots.h" #include "pathnames.h" |