aboutsummaryrefslogtreecommitdiff
path: root/games/cribbage
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>1999-11-30 03:50:02 +0000
committerBill Fumerola <billf@FreeBSD.org>1999-11-30 03:50:02 +0000
commit7b216475bfdc24758a850dba744e947fc6173e68 (patch)
tree3ae574978e74559dfce75bd93019aa6294c63377 /games/cribbage
parent4805de8700a2ad81e00b56a3d8089669d4982283 (diff)
downloadsrc-7b216475bfdc24758a850dba744e947fc6173e68.tar.gz
src-7b216475bfdc24758a850dba744e947fc6173e68.zip
copyright/sccsid/rcsid cleanup.
Notes
Notes: svn path=/head/; revision=53920
Diffstat (limited to 'games/cribbage')
-rw-r--r--games/cribbage/cards.c6
-rw-r--r--games/cribbage/crib.c8
-rw-r--r--games/cribbage/extern.c4
-rw-r--r--games/cribbage/instr.c4
-rw-r--r--games/cribbage/io.c6
-rw-r--r--games/cribbage/score.c6
-rw-r--r--games/cribbage/support.c6
7 files changed, 29 insertions, 11 deletions
diff --git a/games/cribbage/cards.c b/games/cribbage/cards.c
index 9b678d43e800..ba846aed6398 100644
--- a/games/cribbage/cards.c
+++ b/games/cribbage/cards.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)cards.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <curses.h>
diff --git a/games/cribbage/crib.c b/games/cribbage/crib.c
index 620651015c78..9fccc6335e74 100644
--- a/games/cribbage/crib.c
+++ b/games/cribbage/crib.c
@@ -29,18 +29,20 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
-static char copyright[] =
+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[] = "@(#)crib.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <curses.h>
diff --git a/games/cribbage/extern.c b/games/cribbage/extern.c
index 9083cc86fe90..97516df9d9fe 100644
--- a/games/cribbage/extern.c
+++ b/games/cribbage/extern.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)extern.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <curses.h>
diff --git a/games/cribbage/instr.c b/games/cribbage/instr.c
index a0414d80e0df..2e310b9136d7 100644
--- a/games/cribbage/instr.c
+++ b/games/cribbage/instr.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)instr.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/types.h>
diff --git a/games/cribbage/io.c b/games/cribbage/io.c
index 96b92dbb89fe..9384354dc1c5 100644
--- a/games/cribbage/io.c
+++ b/games/cribbage/io.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <ctype.h>
diff --git a/games/cribbage/score.c b/games/cribbage/score.c
index d81ebcea6aa8..a2a7d0b66e36 100644
--- a/games/cribbage/score.c
+++ b/games/cribbage/score.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)score.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <curses.h>
diff --git a/games/cribbage/support.c b/games/cribbage/support.c
index 60d9f5bc3280..639151b81bba 100644
--- a/games/cribbage/support.c
+++ b/games/cribbage/support.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)support.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <curses.h>