copyright messages
authorEdward Wang <edward@ucbvax.Berkeley.EDU>
Thu, 25 Apr 1985 06:33:07 +0000 (22:33 -0800)
committerEdward Wang <edward@ucbvax.Berkeley.EDU>
Thu, 25 Apr 1985 06:33:07 +0000 (22:33 -0800)
SCCS-vsn: games/battlestar/com3.c 1.2
SCCS-vsn: games/battlestar/com4.c 1.3
SCCS-vsn: games/battlestar/com5.c 1.3
SCCS-vsn: games/battlestar/com6.c 1.3
SCCS-vsn: games/battlestar/fly.c 1.3
SCCS-vsn: games/battlestar/com1.c 1.3
SCCS-vsn: games/battlestar/Makefile 1.6
SCCS-vsn: games/battlestar/cypher.c 1.3
SCCS-vsn: games/battlestar/battlestar.6 1.2
SCCS-vsn: games/battlestar/battlestar.c 1.3
SCCS-vsn: games/battlestar/dayfile.c 1.2
SCCS-vsn: games/battlestar/dayobjs.c 1.3
SCCS-vsn: games/battlestar/words.c 1.3
SCCS-vsn: games/battlestar/getcom.c 1.3
SCCS-vsn: games/battlestar/globals.c 1.3
SCCS-vsn: games/battlestar/init.c 1.3
SCCS-vsn: games/battlestar/misc.c 1.2
SCCS-vsn: games/battlestar/nightfile.c 1.2
SCCS-vsn: games/battlestar/parse.c 1.2
SCCS-vsn: games/battlestar/room.c 1.3
SCCS-vsn: games/battlestar/save.c 1.3
SCCS-vsn: games/battlestar/com2.c 1.3
SCCS-vsn: games/battlestar/com7.c 1.3
SCCS-vsn: games/battlestar/extern.h 1.3
SCCS-vsn: games/battlestar/nightobjs.c 1.3

25 files changed:
usr/src/games/battlestar/Makefile
usr/src/games/battlestar/battlestar.6
usr/src/games/battlestar/battlestar.c
usr/src/games/battlestar/com1.c
usr/src/games/battlestar/com2.c
usr/src/games/battlestar/com3.c
usr/src/games/battlestar/com4.c
usr/src/games/battlestar/com5.c
usr/src/games/battlestar/com6.c
usr/src/games/battlestar/com7.c
usr/src/games/battlestar/cypher.c
usr/src/games/battlestar/dayfile.c
usr/src/games/battlestar/dayobjs.c
usr/src/games/battlestar/extern.h
usr/src/games/battlestar/fly.c
usr/src/games/battlestar/getcom.c
usr/src/games/battlestar/globals.c
usr/src/games/battlestar/init.c
usr/src/games/battlestar/misc.c
usr/src/games/battlestar/nightfile.c
usr/src/games/battlestar/nightobjs.c
usr/src/games/battlestar/parse.c
usr/src/games/battlestar/room.c
usr/src/games/battlestar/save.c
usr/src/games/battlestar/words.c

index ca7291f..4e7b379 100644 (file)
@@ -1,4 +1,10 @@
-# @(#)Makefile 1.5 %G%
+#
+# Copyright (c) 1983 Regents of the University of California,
+# All rights reserved.  Redistribution permitted subject to
+# the terms of the Berkeley Software License Agreement.
+#
+
+# @(#)Makefile 1.6 %G%
 
 CFLAGS=                -O
 OBJS=          battlestar.o com1.o com2.o com3.o com4.o com5.o com6.o com7.o \
 
 CFLAGS=                -O
 OBJS=          battlestar.o com1.o com2.o com3.o com4.o com5.o com6.o com7.o \
index dd8f2b0..2a0dc09 100644 (file)
@@ -1,5 +1,12 @@
-.. @(#)battlestar.6    1.1 %G%
-.TH BATTLESTAR PUBLIC 
+.\"
+.\" Copyright (c) 1983 Regents of the University of California,
+.\" All rights reserved.  Redistribution permitted subject to
+.\" the terms of the Berkeley Software License Agreement.
+.\"
+
+.\" @(#)battlestar.6   1.2 %G%
+
+.TH BATTLESTAR 6
 .UC 4
 .SH NAME
 battlestar \- a tropical adventure game
 .UC 4
 .SH NAME
 battlestar \- a tropical adventure game
index ceaa502..f3de869 100644 (file)
@@ -1,7 +1,20 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)battlestar.c       1.2 %G%";
+static char sccsid[] = "@(#)battlestar.c       1.3 %G%";
 #endif
 
 #endif
 
+/*
+ * Battlestar - a stellar-tropical adventure game
+ *
+ * Originally written by His Lordship, Admiral David W. Horatio Riggle,
+ * on the Cory PDP-11/70, University of California, Berkeley.
+ */
+
 #include "externs.h"
 
 main(argc,argv)
 #include "externs.h"
 
 main(argc,argv)
index 1aa71a0..83619bf 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)com1.c     1.2 %G%";
+static char sccsid[] = "@(#)com1.c     1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index 8b72abf..d2512b5 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)com2.c     1.2 %G%";
+static char sccsid[] = "@(#)com2.c     1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index 88ca351..4317d26 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)com3.c     1.1 %G%";
+static char sccsid[] = "@(#)com3.c     1.2 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index 7d0aeb7..0971d4f 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)com4.c     1.2 %G%";
+static char sccsid[] = "@(#)com4.c     1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index 6e080a4..b975266 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)com5.c     1.2 %G%";
+static char sccsid[] = "@(#)com5.c     1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index ff51f02..249266b 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)com6.c     1.2 %G%";
+static char sccsid[] = "@(#)com6.c     1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index d5923d7..b0b4bc9 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)com7.c     1.2 %G%";
+static char sccsid[] = "@(#)com7.c     1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index 7441c32..2bfe088 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)cypher.c   1.2 %G%";
+static char sccsid[] = "@(#)cypher.c   1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index 9cc9e55..d664e85 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)dayfile.c  1.1 %G%";
+static char sccsid[] = "@(#)dayfile.c  1.2 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index cf828d2..e7c195a 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)dayobjs.c  1.2 %G%";
+static char sccsid[] = "@(#)dayobjs.c  1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index 00e55d0..046dee1 100644 (file)
@@ -1,4 +1,10 @@
-/* @(#)extern.h        1.2 %G% */
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
+/* @(#)extern.h        1.3 %G% */
 
 #include <sys/signal.h>
 #include <stdio.h>
 
 #include <sys/signal.h>
 #include <stdio.h>
index a1758ab..1e6ae82 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)fly.c      1.2 %G%";
+static char sccsid[] = "@(#)fly.c      1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index f1cf824..4fea6bc 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)getcom.c   1.2 %G%";
+static char sccsid[] = "@(#)getcom.c   1.3 %G%";
 #endif
 
 #include <stdio.h>
 #endif
 
 #include <stdio.h>
index 712fad0..89f48a6 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)globals.c  1.2 %G%";
+static char sccsid[] = "@(#)globals.c  1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index 3dec64c..34cd0fb 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)init.c     1.2 %G%";
+static char sccsid[] = "@(#)init.c     1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index bf6a41c..95b7950 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)misc.c     1.1 %G%";
+static char sccsid[] = "@(#)misc.c     1.2 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index 7101b57..d3b68d9 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)nightfile.c        1.1 %G%";
+static char sccsid[] = "@(#)nightfile.c        1.2 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index e595aea..6c4d01e 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)nightobjs.c        1.2 %G%";
+static char sccsid[] = "@(#)nightobjs.c        1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index 971a675..c8c02c1 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)parse.c    1.1 %G%";
+static char sccsid[] = "@(#)parse.c    1.2 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index d227b04..a2097c2 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)room.c     1.2 %G%";
+static char sccsid[] = "@(#)room.c     1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index 998614c..69ac9c0 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)save.c     1.2 %G%";
+static char sccsid[] = "@(#)save.c     1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"
index 4356868..d766c6b 100644 (file)
@@ -1,5 +1,11 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)words.c    1.2 %G%";
+static char sccsid[] = "@(#)words.c    1.3 %G%";
 #endif
 
 #include "externs.h"
 #endif
 
 #include "externs.h"