summaryrefslogtreecommitdiff
path: root/games/backgammon
diff options
context:
space:
mode:
Diffstat (limited to 'games/backgammon')
-rw-r--r--games/backgammon/backgammon/extra.c10
-rw-r--r--games/backgammon/backgammon/main.c16
-rw-r--r--games/backgammon/backgammon/move.c10
-rw-r--r--games/backgammon/backgammon/text.c10
-rw-r--r--games/backgammon/common_source/allow.c10
-rw-r--r--games/backgammon/common_source/board.c10
-rw-r--r--games/backgammon/common_source/check.c10
-rw-r--r--games/backgammon/common_source/fancy.c10
-rw-r--r--games/backgammon/common_source/init.c10
-rw-r--r--games/backgammon/common_source/odds.c10
-rw-r--r--games/backgammon/common_source/one.c10
-rw-r--r--games/backgammon/common_source/save.c10
-rw-r--r--games/backgammon/common_source/subs.c10
-rw-r--r--games/backgammon/common_source/table.c10
-rw-r--r--games/backgammon/teachgammon/data.c10
-rw-r--r--games/backgammon/teachgammon/teach.c16
-rw-r--r--games/backgammon/teachgammon/ttext1.c10
-rw-r--r--games/backgammon/teachgammon/ttext2.c10
-rw-r--r--games/backgammon/teachgammon/tutor.c10
19 files changed, 19 insertions, 183 deletions
diff --git a/games/backgammon/backgammon/extra.c b/games/backgammon/backgammon/extra.c
index f51776a68bb..5b91bb4b8a0 100644
--- a/games/backgammon/backgammon/extra.c
+++ b/games/backgammon/backgammon/extra.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: extra.c,v 1.5 2006/12/14 10:14:05 martin Exp $ */
+/* $OpenBSD: extra.c,v 1.6 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)extra.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: extra.c,v 1.5 2006/12/14 10:14:05 martin Exp $";
-#endif
-#endif /* not lint */
-
#include "back.h"
#include "backlocal.h"
diff --git a/games/backgammon/backgammon/main.c b/games/backgammon/backgammon/main.c
index 60635878a3d..8b08c1b16f7 100644
--- a/games/backgammon/backgammon/main.c
+++ b/games/backgammon/backgammon/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.15 2006/10/29 20:02:41 martin Exp $ */
+/* $OpenBSD: main.c,v 1.16 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,20 +29,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.15 2006/10/29 20:02:41 martin Exp $";
-#endif
-#endif /* not lint */
-
#include <err.h>
#include <time.h>
#include "back.h"
diff --git a/games/backgammon/backgammon/move.c b/games/backgammon/backgammon/move.c
index 29ed30029c3..73634f4ed64 100644
--- a/games/backgammon/backgammon/move.c
+++ b/games/backgammon/backgammon/move.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: move.c,v 1.9 2006/12/14 10:14:05 martin Exp $ */
+/* $OpenBSD: move.c,v 1.10 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,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.9 2006/12/14 10:14:05 martin Exp $";
-#endif
-#endif /* not lint */
-
#include "back.h"
#include "backlocal.h"
diff --git a/games/backgammon/backgammon/text.c b/games/backgammon/backgammon/text.c
index b893f222fe5..c92d7f6bbf3 100644
--- a/games/backgammon/backgammon/text.c
+++ b/games/backgammon/backgammon/text.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: text.c,v 1.7 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: text.c,v 1.8 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)text.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: text.c,v 1.7 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include "back.h"
const char *const instruct[] = {
diff --git a/games/backgammon/common_source/allow.c b/games/backgammon/common_source/allow.c
index 8e2839e4a99..da17fdd819e 100644
--- a/games/backgammon/common_source/allow.c
+++ b/games/backgammon/common_source/allow.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: allow.c,v 1.4 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: allow.c,v 1.5 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)allow.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: allow.c,v 1.4 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include "back.h"
int
diff --git a/games/backgammon/common_source/board.c b/games/backgammon/common_source/board.c
index ea636dbf7eb..a0802e1a3a4 100644
--- a/games/backgammon/common_source/board.c
+++ b/games/backgammon/common_source/board.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: board.c,v 1.7 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: board.c,v 1.8 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)board.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: board.c,v 1.7 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include "back.h"
static int i, j, k;
diff --git a/games/backgammon/common_source/check.c b/games/backgammon/common_source/check.c
index 116fab66690..a8438570846 100644
--- a/games/backgammon/common_source/check.c
+++ b/games/backgammon/common_source/check.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: check.c,v 1.5 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: check.c,v 1.6 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)check.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: check.c,v 1.5 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include "back.h"
void
diff --git a/games/backgammon/common_source/fancy.c b/games/backgammon/common_source/fancy.c
index cf93269a24c..1b286dc7aef 100644
--- a/games/backgammon/common_source/fancy.c
+++ b/games/backgammon/common_source/fancy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fancy.c,v 1.11 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: fancy.c,v 1.12 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)fancy.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: fancy.c,v 1.11 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include <err.h>
#include "back.h"
diff --git a/games/backgammon/common_source/init.c b/games/backgammon/common_source/init.c
index 85ae503e1f9..50ed7b357fe 100644
--- a/games/backgammon/common_source/init.c
+++ b/games/backgammon/common_source/init.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: init.c,v 1.9 2006/12/14 10:14:05 martin Exp $ */
+/* $OpenBSD: init.c,v 1.10 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: init.c,v 1.9 2006/12/14 10:14:05 martin Exp $";
-#endif
-#endif /* not lint */
-
/*
* variable initialization.
*/
diff --git a/games/backgammon/common_source/odds.c b/games/backgammon/common_source/odds.c
index 68cbb49fa75..438b40b134e 100644
--- a/games/backgammon/common_source/odds.c
+++ b/games/backgammon/common_source/odds.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: odds.c,v 1.4 2006/03/27 00:10:14 tedu Exp $ */
+/* $OpenBSD: odds.c,v 1.5 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)odds.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: odds.c,v 1.4 2006/03/27 00:10:14 tedu Exp $";
-#endif
-#endif /* not lint */
-
#include "back.h"
void
diff --git a/games/backgammon/common_source/one.c b/games/backgammon/common_source/one.c
index 89bf7e2f526..bc92c802b10 100644
--- a/games/backgammon/common_source/one.c
+++ b/games/backgammon/common_source/one.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: one.c,v 1.4 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: one.c,v 1.5 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)one.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: one.c,v 1.4 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include "back.h"
int
diff --git a/games/backgammon/common_source/save.c b/games/backgammon/common_source/save.c
index bf05e16b4af..a56b22db6da 100644
--- a/games/backgammon/common_source/save.c
+++ b/games/backgammon/common_source/save.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: save.c,v 1.9 2006/03/27 00:10:14 tedu Exp $ */
+/* $OpenBSD: save.c,v 1.10 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)save.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: save.c,v 1.9 2006/03/27 00:10:14 tedu Exp $";
-#endif
-#endif /* not lint */
-
#include <sys/param.h>
#include <ctype.h>
#include <errno.h>
diff --git a/games/backgammon/common_source/subs.c b/games/backgammon/common_source/subs.c
index c41a808bde7..eca168d258b 100644
--- a/games/backgammon/common_source/subs.c
+++ b/games/backgammon/common_source/subs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subs.c,v 1.17 2008/03/17 09:17:56 sobrado Exp $ */
+/* $OpenBSD: subs.c,v 1.18 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)subs.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: subs.c,v 1.17 2008/03/17 09:17:56 sobrado Exp $";
-#endif
-#endif /* not lint */
-
#include "back.h"
__dead void usage(void);
diff --git a/games/backgammon/common_source/table.c b/games/backgammon/common_source/table.c
index 5ecdac6708e..6c69e260ac4 100644
--- a/games/backgammon/common_source/table.c
+++ b/games/backgammon/common_source/table.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: table.c,v 1.7 2006/03/27 00:10:14 tedu Exp $ */
+/* $OpenBSD: table.c,v 1.8 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)table.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: table.c,v 1.7 2006/03/27 00:10:14 tedu Exp $";
-#endif
-#endif /* not lint */
-
#include <ctype.h>
#include "back.h"
diff --git a/games/backgammon/teachgammon/data.c b/games/backgammon/teachgammon/data.c
index 4a39bbb75fb..1049f0f109b 100644
--- a/games/backgammon/teachgammon/data.c
+++ b/games/backgammon/teachgammon/data.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: data.c,v 1.5 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: data.c,v 1.6 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)data.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: data.c,v 1.5 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include <sys/cdefs.h>
#include "tutor.h"
diff --git a/games/backgammon/teachgammon/teach.c b/games/backgammon/teachgammon/teach.c
index c9e1092772e..3a27c909ca8 100644
--- a/games/backgammon/teachgammon/teach.c
+++ b/games/backgammon/teachgammon/teach.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: teach.c,v 1.13 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: teach.c,v 1.14 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,20 +29,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[] = "@(#)teach.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: teach.c,v 1.13 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include <err.h>
#include "back.h"
#include "tutor.h"
diff --git a/games/backgammon/teachgammon/ttext1.c b/games/backgammon/teachgammon/ttext1.c
index 6b17aa7c501..4a134aa1983 100644
--- a/games/backgammon/teachgammon/ttext1.c
+++ b/games/backgammon/teachgammon/ttext1.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ttext1.c,v 1.5 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: ttext1.c,v 1.6 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)ttext1.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: ttext1.c,v 1.5 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include "back.h"
#include "tutor.h"
diff --git a/games/backgammon/teachgammon/ttext2.c b/games/backgammon/teachgammon/ttext2.c
index b4f1d6179e9..241b513bc48 100644
--- a/games/backgammon/teachgammon/ttext2.c
+++ b/games/backgammon/teachgammon/ttext2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ttext2.c,v 1.6 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: ttext2.c,v 1.7 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)ttext2.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: ttext2.c,v 1.6 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include "back.h"
#include "tutor.h"
diff --git a/games/backgammon/teachgammon/tutor.c b/games/backgammon/teachgammon/tutor.c
index f4979e6e58d..03838499b7a 100644
--- a/games/backgammon/teachgammon/tutor.c
+++ b/games/backgammon/teachgammon/tutor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tutor.c,v 1.5 2003/06/03 03:01:38 millert Exp $ */
+/* $OpenBSD: tutor.c,v 1.6 2009/10/27 23:59:23 deraadt Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -29,14 +29,6 @@
* SUCH DAMAGE.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)tutor.c 8.1 (Berkeley) 5/31/93";
-#else
-static char rcsid[] = "$OpenBSD: tutor.c,v 1.5 2003/06/03 03:01:38 millert Exp $";
-#endif
-#endif /* not lint */
-
#include "back.h"
#include "tutor.h"