4.4BSD snapshot (revision 8.1); add 1993 to copyright
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 1 Jun 1993 07:49:43 +0000 (23:49 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 1 Jun 1993 07:49:43 +0000 (23:49 -0800)
SCCS-vsn: games/cribbage/cards.c 8.1
SCCS-vsn: games/cribbage/crib.c 8.1
SCCS-vsn: games/cribbage/cribbage.h 8.1
SCCS-vsn: games/cribbage/cribcur.h 8.1
SCCS-vsn: games/cribbage/deck.h 8.1
SCCS-vsn: games/cribbage/extern.c 8.1
SCCS-vsn: games/cribbage/instr.c 8.1
SCCS-vsn: games/cribbage/io.c 8.1
SCCS-vsn: games/cribbage/pathnames.h 8.1
SCCS-vsn: games/cribbage/score.c 8.1
SCCS-vsn: games/cribbage/support.c 8.1

usr/src/games/cribbage/cards.c
usr/src/games/cribbage/crib.c
usr/src/games/cribbage/cribbage.h
usr/src/games/cribbage/cribcur.h
usr/src/games/cribbage/deck.h
usr/src/games/cribbage/extern.c
usr/src/games/cribbage/instr.c
usr/src/games/cribbage/io.c
usr/src/games/cribbage/pathnames.h
usr/src/games/cribbage/score.c
usr/src/games/cribbage/support.c

index 967486d..ac967c1 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)cards.c    5.6 (Berkeley) %G%";
+static char sccsid[] = "@(#)cards.c    8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <curses.h>
 #endif /* not lint */
 
 #include <curses.h>
index fe01f99..fedfdad 100644 (file)
@@ -1,18 +1,18 @@
 /*-
 /*-
- * Copyright (c) 1980 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-char copyright[] =
-"@(#) Copyright (c) 1980 The Regents of the University of California.\n\
- All rights reserved.\n";
+static char copyright[] =
+"@(#) Copyright (c) 1980, 1993\n\
      The Regents of the University of California.  All rights reserved.\n";
 #endif /* not lint */
 
 #ifndef lint
 #endif /* not lint */
 
 #ifndef lint
-static char sccsid[] = "@(#)crib.c     5.8 (Berkeley) %G%";
+static char sccsid[] = "@(#)crib.c     8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <curses.h>
 #endif /* not lint */
 
 #include <curses.h>
index 5336092..4645ff0 100644 (file)
@@ -1,10 +1,10 @@
 /*
 /*
- * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)cribbage.h  5.6 (Berkeley) %G%
+ *     @(#)cribbage.h  8.1 (Berkeley) %G%
  */
 
 extern  CARD           deck[ CARDS ];          /* a deck */
  */
 
 extern  CARD           deck[ CARDS ];          /* a deck */
index 60fe10b..6c6f449 100644 (file)
@@ -1,10 +1,10 @@
 /*
 /*
- * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)cribcur.h   5.4 (Berkeley) %G%
+ *     @(#)cribcur.h   8.1 (Berkeley) %G%
  */
 
 # define       PLAY_Y          15      /* size of player's hand window */
  */
 
 # define       PLAY_Y          15      /* size of player's hand window */
index 78b36ea..43d0358 100644 (file)
@@ -1,10 +1,10 @@
 /*
 /*
- * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)deck.h      5.4 (Berkeley) %G%
+ *     @(#)deck.h      8.1 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
index e00b2ca..f06c50c 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)extern.c   5.5 (Berkeley) %G%";
+static char sccsid[] = "@(#)extern.c   8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <curses.h>
 #endif /* not lint */
 
 #include <curses.h>
index 4ab8d6c..fa17624 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1990 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1990, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)instr.c    5.3 (Berkeley) %G%";
+static char sccsid[] = "@(#)instr.c    8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index 49f2810..5887cf8 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)io.c       5.13 (Berkeley) %G%";
+static char sccsid[] = "@(#)io.c       8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <ctype.h>
 #endif /* not lint */
 
 #include <ctype.h>
index 425e5a9..d31a8cf 100644 (file)
@@ -1,10 +1,10 @@
 /*-
 /*-
- * Copyright (c) 1990 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1990, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)pathnames.h 5.2 (Berkeley) %G%
+ *     @(#)pathnames.h 8.1 (Berkeley) %G%
  */
 
 #define        _PATH_INSTR     "/usr/share/games/cribbage.instr"
  */
 
 #define        _PATH_INSTR     "/usr/share/games/cribbage.instr"
index 08ee14b..3b31bdd 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)score.c    5.6 (Berkeley) %G%";
+static char sccsid[] = "@(#)score.c    8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <curses.h>
 #endif /* not lint */
 
 #include <curses.h>
index de74162..2adb0c5 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)support.c  5.7 (Berkeley) %G%";
+static char sccsid[] = "@(#)support.c  8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <curses.h>
 #endif /* not lint */
 
 #include <curses.h>