summaryrefslogtreecommitdiff
path: root/games/atc
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2009-10-28 00:00:00 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2009-10-28 00:00:00 +0000
commitd6f987883e262363e2689803a36a7c32736476cc (patch)
tree1158893c08ead8fccdd4ac523d3492f68c4c1cda /games/atc
parent94ea65f5c4b7bedff1d6c9caca5363f926955d43 (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/atc')
-rw-r--r--games/atc/extern.c10
-rw-r--r--games/atc/grammar.y10
-rw-r--r--games/atc/graphics.c10
-rw-r--r--games/atc/input.c10
-rw-r--r--games/atc/lex.l10
-rw-r--r--games/atc/list.c10
-rw-r--r--games/atc/log.c10
-rw-r--r--games/atc/main.c16
-rw-r--r--games/atc/update.c10
9 files changed, 9 insertions, 87 deletions
diff --git a/games/atc/extern.c b/games/atc/extern.c
index 3283b0d02c3..313873f8c19 100644
--- a/games/atc/extern.c
+++ b/games/atc/extern.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: extern.c,v 1.3 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: extern.c,v 1.4 2009/10/27 23:59:23 deraadt Exp $ */
/* $NetBSD: extern.c,v 1.4 1995/04/27 21:22:19 mycroft Exp $ */
/*-
@@ -42,14 +42,6 @@
* For more info on this and all of my stuff, mail edjames@berkeley.edu.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)extern.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: extern.c,v 1.3 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include "include.h"
char GAMES[] = "Game_List";
diff --git a/games/atc/grammar.y b/games/atc/grammar.y
index adab173293a..e6dd0e02420 100644
--- a/games/atc/grammar.y
+++ b/games/atc/grammar.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: grammar.y,v 1.5 2007/09/04 22:39:31 hshoexer Exp $ */
+/* $OpenBSD: grammar.y,v 1.6 2009/10/27 23:59:23 deraadt Exp $ */
/* $NetBSD: grammar.y,v 1.3 1995/03/21 15:03:59 cgd Exp $ */
/*-
@@ -60,14 +60,6 @@
%{
#include "include.h"
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)grammar.y 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: grammar.y,v 1.5 2007/09/04 22:39:31 hshoexer Exp $";
-#endif
-#endif /* not lint */
-
int errors = 0;
int line = 1;
%}
diff --git a/games/atc/graphics.c b/games/atc/graphics.c
index 9d6efb66e1d..6aad9d476eb 100644
--- a/games/atc/graphics.c
+++ b/games/atc/graphics.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: graphics.c,v 1.7 2004/11/29 08:52:28 jsg Exp $ */
+/* $OpenBSD: graphics.c,v 1.8 2009/10/27 23:59:23 deraadt Exp $ */
/* $NetBSD: graphics.c,v 1.3 1995/03/21 15:04:04 cgd Exp $ */
/*-
@@ -42,14 +42,6 @@
* For more info on this and all of my stuff, mail edjames@berkeley.edu.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)graphics.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: graphics.c,v 1.7 2004/11/29 08:52:28 jsg Exp $";
-#endif
-#endif /* not lint */
-
#include <err.h>
#include "include.h"
diff --git a/games/atc/input.c b/games/atc/input.c
index a188d17fc58..6528902b117 100644
--- a/games/atc/input.c
+++ b/games/atc/input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: input.c,v 1.11 2006/11/07 03:52:59 deraadt Exp $ */
+/* $OpenBSD: input.c,v 1.12 2009/10/27 23:59:23 deraadt Exp $ */
/* $NetBSD: input.c,v 1.4 1995/04/27 21:22:24 mycroft Exp $ */
/*-
@@ -42,14 +42,6 @@
* For more info on this and all of my stuff, mail edjames@berkeley.edu.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)input.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: input.c,v 1.11 2006/11/07 03:52:59 deraadt Exp $";
-#endif
-#endif /* not lint */
-
#include "include.h"
#include "pathnames.h"
diff --git a/games/atc/lex.l b/games/atc/lex.l
index f7f315db177..f1cc2f64e77 100644
--- a/games/atc/lex.l
+++ b/games/atc/lex.l
@@ -1,5 +1,5 @@
%{
-/* $OpenBSD: lex.l,v 1.3 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: lex.l,v 1.4 2009/10/27 23:59:23 deraadt Exp $ */
/* $NetBSD: lex.l,v 1.3 1995/03/21 15:04:15 cgd Exp $ */
/*-
@@ -43,14 +43,6 @@
* For more info on this and all of my stuff, mail edjames@berkeley.edu.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)lex.l 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: lex.l,v 1.3 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include "y.tab.h"
extern int line;
diff --git a/games/atc/list.c b/games/atc/list.c
index c51c69a8a7c..0da162435e0 100644
--- a/games/atc/list.c
+++ b/games/atc/list.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: list.c,v 1.6 2004/11/29 08:52:28 jsg Exp $ */
+/* $OpenBSD: list.c,v 1.7 2009/10/27 23:59:23 deraadt Exp $ */
/* $NetBSD: list.c,v 1.3 1995/03/21 15:04:18 cgd Exp $ */
/*-
@@ -42,14 +42,6 @@
* For more info on this and all of my stuff, mail edjames@berkeley.edu.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)list.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: list.c,v 1.6 2004/11/29 08:52:28 jsg Exp $";
-#endif
-#endif /* not lint */
-
#include "include.h"
PLANE *
diff --git a/games/atc/log.c b/games/atc/log.c
index 352784411d5..6f134bec863 100644
--- a/games/atc/log.c
+++ b/games/atc/log.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: log.c,v 1.16 2007/11/06 10:22:29 chl Exp $ */
+/* $OpenBSD: log.c,v 1.17 2009/10/27 23:59:23 deraadt Exp $ */
/* $NetBSD: log.c,v 1.3 1995/03/21 15:04:21 cgd Exp $ */
/*-
@@ -42,14 +42,6 @@
* For more info on this and all of my stuff, mail edjames@berkeley.edu.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)log.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: log.c,v 1.16 2007/11/06 10:22:29 chl Exp $";
-#endif
-#endif /* not lint */
-
#include "include.h"
#include "pathnames.h"
diff --git a/games/atc/main.c b/games/atc/main.c
index 456ec1f0750..5b189534bb6 100644
--- a/games/atc/main.c
+++ b/games/atc/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.20 2009/06/01 13:04:59 ray Exp $ */
+/* $OpenBSD: main.c,v 1.21 2009/10/27 23:59:23 deraadt Exp $ */
/* $NetBSD: main.c,v 1.4 1995/04/27 21:22:25 mycroft Exp $ */
/*-
@@ -42,20 +42,6 @@
* For more info on this and all of my stuff, mail edjames@berkeley.edu.
*/
-#ifndef lint
-static char copyright[] =
-"@(#) Copyright (c) 1990, 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.20 2009/06/01 13:04:59 ray Exp $";
-#endif
-#endif /* not lint */
-
#include "include.h"
#include "pathnames.h"
diff --git a/games/atc/update.c b/games/atc/update.c
index a97a854d0a4..98ce4d2d9d4 100644
--- a/games/atc/update.c
+++ b/games/atc/update.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: update.c,v 1.11 2006/03/31 10:32:30 otto Exp $ */
+/* $OpenBSD: update.c,v 1.12 2009/10/27 23:59:23 deraadt Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -41,14 +41,6 @@
* For more info on this and all of my stuff, mail edjames@berkeley.edu.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)update.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: update.c,v 1.11 2006/03/31 10:32:30 otto Exp $";
-#endif
-#endif /* not lint */
-
#include "include.h"
void