add Berkeley specific header, Ken Arnold says written @ Berkeley
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 11 Mar 1988 08:31:56 +0000 (00:31 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 11 Mar 1988 08:31:56 +0000 (00:31 -0800)
SCCS-vsn: games/cribbage/Makefile 5.6
SCCS-vsn: games/cribbage/macro 5.2
SCCS-vsn: games/cribbage/test.c 5.2
SCCS-vsn: games/cribbage/crib.c 5.2
SCCS-vsn: games/cribbage/cribbage.h 5.2
SCCS-vsn: games/cribbage/cribcur.h 5.2
SCCS-vsn: games/cribbage/deck.h 5.2
SCCS-vsn: games/cribbage/cards.c 5.2
SCCS-vsn: games/cribbage/extern.c 5.2
SCCS-vsn: games/cribbage/io.c 5.3
SCCS-vsn: games/cribbage/score.c 5.3
SCCS-vsn: games/cribbage/support.c 5.3

12 files changed:
usr/src/games/cribbage/Makefile
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/io.c
usr/src/games/cribbage/macro
usr/src/games/cribbage/score.c
usr/src/games/cribbage/support.c
usr/src/games/cribbage/test.c

index 56bb5e6..1a5aeaa 100644 (file)
@@ -1,9 +1,15 @@
 #
 # Copyright (c) 1987 Regents of the University of California.
 #
 # Copyright (c) 1987 Regents of the University of California.
-# All rights reserved.  The Berkeley software License Agreement
-# specifies the terms and conditions for redistribution.
+# All rights reserved.
 #
 #
-#      @(#)Makefile    5.5     (Berkeley)      %G%
+# Redistribution and use in source and binary forms are permitted
+# provided that this notice is preserved and that due credit is given
+# to the University of California at Berkeley. The name of the University
+# may not be used to endorse or promote products derived from this
+# software without specific prior written permission. This software
+# is provided ``as is'' without express or implied warranty.
+#
+#      @(#)Makefile    5.6 (Berkeley) %G%
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
index f9bce2f..7658dd3 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)cards.c    5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)cards.c    5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include       <stdio.h>
 #include       "deck.h"
 
 #include       <stdio.h>
 #include       "deck.h"
index 2029464..0a66554 100644 (file)
@@ -1,18 +1,24 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
 char copyright[] =
 "@(#) Copyright (c) 1980 Regents of the University of California.\n\
  All rights reserved.\n";
  */
 
 #ifndef lint
 char copyright[] =
 "@(#) Copyright (c) 1980 Regents of the University of California.\n\
  All rights reserved.\n";
-#endif not lint
+#endif /* not lint */
 
 #ifndef lint
 
 #ifndef lint
-static char sccsid[] = "@(#)crib.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)crib.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 # include      <curses.h>
 # include      <signal.h>
 
 # include      <curses.h>
 # include      <signal.h>
index 03c7f32..14cbcd0 100644 (file)
@@ -1,9 +1,15 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
  *
  *
- *     @(#)cribbage.h  5.1 (Berkeley) %G%
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
+ *
+ *     @(#)cribbage.h  5.2 (Berkeley) %G%
  */
 
 extern  CARD           deck[ CARDS ];          /* a deck */
  */
 
 extern  CARD           deck[ CARDS ];          /* a deck */
index 06ebb57..e26a274 100644 (file)
@@ -1,9 +1,15 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
  *
  *
- *     @(#)cribcur.h   5.1 (Berkeley) %G%
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
+ *
+ *     @(#)cribcur.h   5.2 (Berkeley) %G%
  */
 
 # define       PLAY_Y          15      /* size of player's hand window */
  */
 
 # define       PLAY_Y          15      /* size of player's hand window */
index 6f5be12..5fafa2d 100644 (file)
@@ -1,9 +1,15 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
  *
  *
- *     @(#)deck.h      5.1 (Berkeley) %G%
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
+ *
+ *     @(#)deck.h      5.2 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
index fbb1e9d..c9ab54f 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)extern.c   5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)extern.c   5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 # include      <curses.h>
 # include      "deck.h"
 
 # include      <curses.h>
 # include      "deck.h"
index 96f0494..cad051f 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)io.c       5.2 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)io.c       5.3 (Berkeley) %G%";
+#endif /* not lint */
 
 # include      <curses.h>
 # include      <ctype.h>
 
 # include      <curses.h>
 # include      <ctype.h>
index d6dfa99..77110a0 100644 (file)
@@ -1,8 +1,14 @@
 .\" Copyright (c) 1980 Regents of the University of California.
 .\" Copyright (c) 1980 Regents of the University of California.
-.\" All rights reserved.  The Berkeley software License Agreement
-.\" specifies the terms and conditions for redistribution.
+.\" All rights reserved.
 .\"
 .\"
-.\"    @(#)macro       5.1 (Berkeley) %G%
+.\" Redistribution and use in source and binary forms are permitted
+.\" provided that this notice is preserved and that due credit is given
+.\" to the University of California at Berkeley. The name of the University
+.\" may not be used to endorse or promote products derived from this
+.\" software without specific prior written permission. This software
+.\" is provided ``as is'' without express or implied warranty.
+.\"
+.\"    @(#)macro       5.2 (Berkeley) %G%
 .\"
 .nr  TX  2     \" default line space for text is 2
 .nr  PG  8     \" default paragraph indentation in PG is 8
 .\"
 .nr  TX  2     \" default line space for text is 2
 .nr  PG  8     \" default paragraph indentation in PG is 8
index f9dd008..cb64f86 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)score.c    5.2 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)score.c    5.3 (Berkeley) %G%";
+#endif /* not lint */
 
 #include       <stdio.h>
 #include       "deck.h"
 
 #include       <stdio.h>
 #include       "deck.h"
index 679426c..01f46e8 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)support.c  5.2 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)support.c  5.3 (Berkeley) %G%";
+#endif /* not lint */
 
 #include       <curses.h>
 #include       "deck.h"
 
 #include       <curses.h>
 #include       "deck.h"
index 0748a3f..cdb1b39 100644 (file)
@@ -1,18 +1,24 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
 char copyright[] =
 "@(#) Copyright (c) 1980 Regents of the University of California.\n\
  All rights reserved.\n";
  */
 
 #ifndef lint
 char copyright[] =
 "@(#) Copyright (c) 1980 Regents of the University of California.\n\
  All rights reserved.\n";
-#endif not lint
+#endif /* not lint */
 
 #ifndef lint
 
 #ifndef lint
-static char sccsid[] = "@(#)test.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)test.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include       <stdio.h>
 #include       "deck.h"
 
 #include       <stdio.h>
 #include       "deck.h"