written by David Riggle and Edward Wang; add Berkeley specific copyright
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Thu, 10 Mar 1988 04:30:45 +0000 (20:30 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Thu, 10 Mar 1988 04:30:45 +0000 (20:30 -0800)
SCCS-vsn: games/sail/Makefile 5.6
SCCS-vsn: games/sail/driver.h 5.2
SCCS-vsn: games/sail/extern.h 5.2
SCCS-vsn: games/sail/machdep.h 5.2
SCCS-vsn: games/sail/player.h 5.2
SCCS-vsn: games/sail/main.c 5.2
SCCS-vsn: games/sail/assorted.c 5.2
SCCS-vsn: games/sail/dr_1.c 5.2
SCCS-vsn: games/sail/dr_2.c 5.2
SCCS-vsn: games/sail/dr_3.c 5.2
SCCS-vsn: games/sail/dr_4.c 5.2
SCCS-vsn: games/sail/dr_5.c 5.2
SCCS-vsn: games/sail/dr_main.c 5.3
SCCS-vsn: games/sail/game.c 5.2
SCCS-vsn: games/sail/globals.c 5.2
SCCS-vsn: games/sail/lo_main.c 5.2
SCCS-vsn: games/sail/misc.c 5.2
SCCS-vsn: games/sail/parties.c 5.2
SCCS-vsn: games/sail/pl_1.c 5.2
SCCS-vsn: games/sail/pl_2.c 5.2
SCCS-vsn: games/sail/pl_3.c 5.2
SCCS-vsn: games/sail/pl_4.c 5.2
SCCS-vsn: games/sail/pl_5.c 5.2
SCCS-vsn: games/sail/pl_6.c 5.2
SCCS-vsn: games/sail/pl_7.c 5.4
SCCS-vsn: games/sail/pl_main.c 5.2
SCCS-vsn: games/sail/sync.c 5.3
SCCS-vsn: games/sail/version.c 5.2

28 files changed:
usr/src/games/sail/Makefile
usr/src/games/sail/assorted.c
usr/src/games/sail/dr_1.c
usr/src/games/sail/dr_2.c
usr/src/games/sail/dr_3.c
usr/src/games/sail/dr_4.c
usr/src/games/sail/dr_5.c
usr/src/games/sail/dr_main.c
usr/src/games/sail/driver.h
usr/src/games/sail/extern.h
usr/src/games/sail/game.c
usr/src/games/sail/globals.c
usr/src/games/sail/lo_main.c
usr/src/games/sail/machdep.h
usr/src/games/sail/main.c
usr/src/games/sail/misc.c
usr/src/games/sail/parties.c
usr/src/games/sail/pl_1.c
usr/src/games/sail/pl_2.c
usr/src/games/sail/pl_3.c
usr/src/games/sail/pl_4.c
usr/src/games/sail/pl_5.c
usr/src/games/sail/pl_6.c
usr/src/games/sail/pl_7.c
usr/src/games/sail/pl_main.c
usr/src/games/sail/player.h
usr/src/games/sail/sync.c
usr/src/games/sail/version.c

index 0dcf11d..4f49d3e 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 933d0f3..0f30466 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)assorted.c 5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)assorted.c 5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "externs.h"
 
 
 #include "externs.h"
 
index 78925ac..0ba76ef 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)dr_1.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)dr_1.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "driver.h"
 
 
 #include "driver.h"
 
index 36dbb50..bcd0f5c 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)dr_2.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)dr_2.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "driver.h"
 
 
 #include "driver.h"
 
index 9ae82ea..420ec8b 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)dr_3.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)dr_3.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "driver.h"
 
 
 #include "driver.h"
 
index 3ccfe96..d429c9f 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)dr_4.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)dr_4.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "externs.h"
 
 
 #include "externs.h"
 
index 49a8a2c..ec9b1d5 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)dr_5.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)dr_5.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "externs.h"
 
 
 #include "externs.h"
 
index b149069..5017a92 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)dr_main.c  5.2 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)dr_main.c  5.3 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "driver.h"
 
 
 #include "driver.h"
 
index a7f6a68..f5a53c3 100644 (file)
@@ -1,9 +1,15 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
  *
  *
- *     @(#)driver.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.
+ *
+ *     @(#)driver.h    5.2 (Berkeley) %G%
  */
 
 #include "externs.h"
  */
 
 #include "externs.h"
index 33fb604..df82041 100644 (file)
@@ -1,9 +1,15 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
  *
  *
- *     @(#)extern.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.
+ *
+ *     @(#)extern.h    5.2 (Berkeley) %G%
  */
 
 #include <stdio.h>
  */
 
 #include <stdio.h>
index ad356ae..a8d68bc 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)game.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)game.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "externs.h"
 
 
 #include "externs.h"
 
index b3b40e5..2a2601d 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)globals.c  5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)globals.c  5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "externs.h"
 
 
 #include "externs.h"
 
index a8c3cd7..f0b51dc 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)lo_main.c  5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)lo_main.c  5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 /*
  * Print out the top ten SAILors
 
 /*
  * Print out the top ten SAILors
index e8c3379..47007e8 100644 (file)
@@ -1,9 +1,15 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
  *
  *
- *     @(#)machdep.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.
+ *
+ *     @(#)machdep.h   5.2 (Berkeley) %G%
  */
 
 #define LOGFILE "/usr/games/lib/saillog"       /* has to match the makefile */
  */
 
 #define LOGFILE "/usr/games/lib/saillog"       /* has to match the makefile */
index 4aa7a49..85d3475 100644 (file)
@@ -1,18 +1,24 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] =
  */
 
 #ifndef lint
 char copyright[] =
-"@(#) Copyright (c) 1980 Regents of the University of California.\n\
+"@(#) Copyright (c) 1983 Regents of the University of California.\n\
  All rights reserved.\n";
  All rights reserved.\n";
-#endif not lint
+#endif /* not lint */
 
 #ifndef lint
 
 #ifndef lint
-static char sccsid[] = "@(#)main.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)main.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "externs.h"
 
 
 #include "externs.h"
 
index da6fe02..4e9ea6e 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)misc.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)misc.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "externs.h"
 
 
 #include "externs.h"
 
index 34043e7..a0d1005 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)parties.c  5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)parties.c  5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "externs.h"
 
 
 #include "externs.h"
 
index 82595fd..52a4464 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)pl_1.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)pl_1.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "player.h"
 #include <sys/types.h>
 
 #include "player.h"
 #include <sys/types.h>
index 77b3af4..c99240f 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)pl_2.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)pl_2.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "player.h"
 
 
 #include "player.h"
 
index 9f530f5..ad84fb4 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)pl_3.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)pl_3.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "player.h"
 
 
 #include "player.h"
 
index e233514..8ba54ff 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)pl_4.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)pl_4.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "player.h"
 
 
 #include "player.h"
 
index 6c5ccaf..40a782a 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)pl_5.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)pl_5.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "player.h"
 
 
 #include "player.h"
 
index 094e4e8..3e673a4 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)pl_6.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)pl_6.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "player.h"
 
 
 #include "player.h"
 
index f4bf8be..80954ee 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)pl_7.c     5.3 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)pl_7.c     5.4 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "player.h"
 
 
 #include "player.h"
 
index 509cc2b..d830045 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)pl_main.c  5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)pl_main.c  5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "player.h"
 #include <sys/types.h>
 
 #include "player.h"
 #include <sys/types.h>
index 643981d..cc2b1a3 100644 (file)
@@ -1,9 +1,15 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
  *
  *
- *     @(#)player.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.
+ *
+ *     @(#)player.h    5.2 (Berkeley) %G%
  */
 
 #include <curses.h>
  */
 
 #include <curses.h>
index b72ebe7..e343466 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)sync.c     5.2 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)sync.c     5.3 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "externs.h"
 #include <sys/file.h>
 
 #include "externs.h"
 #include <sys/file.h>
index ec91c87..56ba9fa 100644 (file)
@@ -1,11 +1,17 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 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[] = "@(#)version.c  5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)version.c  5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 
-char version[] = "Wooden Ships and Iron Men, Version 5.1 (85/05/29)";
+char version[] = "Wooden Ships and Iron Men, Version 5.2 (88/03/09)";