From: Robert R. Henry Date: Wed, 12 May 1982 05:42:29 +0000 (-0800) Subject: release version 4.1 X-Git-Tag: BSD-4_1c_2-Snapshot-Development~3482 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/01eb5674d31e092593b463628a0f7de59852e490?ds=inline release version 4.1 SCCS-vsn: games/adventure/Makefile 4.1 SCCS-vsn: games/adventure/done.c 4.1 SCCS-vsn: games/adventure/glorkz 4.1 SCCS-vsn: games/adventure/hdr.h 4.1 SCCS-vsn: games/adventure/init.c 4.1 SCCS-vsn: games/adventure/io.c 4.1 SCCS-vsn: games/adventure/main.c 4.1 SCCS-vsn: games/adventure/okplay.c 4.1 SCCS-vsn: games/adventure/save.c 4.1 SCCS-vsn: games/adventure/subr.c 4.1 SCCS-vsn: games/adventure/vocab.c 4.1 SCCS-vsn: games/adventure/wizard.c 4.1 --- diff --git a/usr/src/games/adventure/Makefile b/usr/src/games/adventure/Makefile index f0702ac864..1389a99607 100644 --- a/usr/src/games/adventure/Makefile +++ b/usr/src/games/adventure/Makefile @@ -1,4 +1,4 @@ -# Makefile 1.1 82/05/11 +# Makefile 4.1 82/05/11 CFILES= done.c init.c io.c main.c save.c subr.c vocab.c wizard.c OBJS= done.o init.o io.o main.o save.o subr.o vocab.o wizard.o diff --git a/usr/src/games/adventure/done.c b/usr/src/games/adventure/done.c index 6f46cab568..2bed7eca00 100644 --- a/usr/src/games/adventure/done.c +++ b/usr/src/games/adventure/done.c @@ -1,7 +1,7 @@ # /* Re-coding of advent in C: termination routines */ -static char sccsid[] = " done.c 1.1 82/05/11 "; +static char sccsid[] = " done.c 4.1 82/05/11 "; # include "hdr.h" diff --git a/usr/src/games/adventure/glorkz b/usr/src/games/adventure/glorkz index 88167fa7c6..a57bedd536 100644 --- a/usr/src/games/adventure/glorkz +++ b/usr/src/games/adventure/glorkz @@ -1810,4 +1810,4 @@ 32 Be sure to save your core-image... -1 0 - glorkz 1.1 82/05/11 + glorkz 4.1 82/05/11 diff --git a/usr/src/games/adventure/hdr.h b/usr/src/games/adventure/hdr.h index de6ba3beb1..3aa24990cd 100644 --- a/usr/src/games/adventure/hdr.h +++ b/usr/src/games/adventure/hdr.h @@ -12,7 +12,7 @@ * "glorkz" in the directory where the program is first run. */ -static char hdr_sccsid[] = " hdr.h 1.1 82/05/11 "; +static char hdr_sccsid[] = " hdr.h 4.1 82/05/11 "; /* hdr.h */ /* hdr.h: included by c advent files */ diff --git a/usr/src/games/adventure/init.c b/usr/src/games/adventure/init.c index 88b055b652..44773a8e66 100644 --- a/usr/src/games/adventure/init.c +++ b/usr/src/games/adventure/init.c @@ -1,7 +1,7 @@ # /* Re-coding of advent in C: data initialization */ -static char sccsid[] = " init.c 1.1 82/05/11 "; +static char sccsid[] = " init.c 4.1 82/05/11 "; # include "hdr.h" diff --git a/usr/src/games/adventure/io.c b/usr/src/games/adventure/io.c index a94e9fb915..2757769744 100644 --- a/usr/src/games/adventure/io.c +++ b/usr/src/games/adventure/io.c @@ -1,7 +1,7 @@ # /* Re-coding of advent in C: file i/o and user i/o */ -static char sccsid[] = " io.c 1.1 82/05/11 "; +static char sccsid[] = " io.c 4.1 82/05/11 "; #include "hdr.h" #include diff --git a/usr/src/games/adventure/main.c b/usr/src/games/adventure/main.c index 2671030af9..c6c8c8b7f6 100644 --- a/usr/src/games/adventure/main.c +++ b/usr/src/games/adventure/main.c @@ -2,7 +2,7 @@ #include "hdr.h" -static char sccsid[] = " main.c 1.1 82/05/11 "; +static char sccsid[] = " main.c 4.1 82/05/11 "; int datfd = -1; main(argc,argv) diff --git a/usr/src/games/adventure/okplay.c b/usr/src/games/adventure/okplay.c index 9a99e72058..a1141e762b 100644 --- a/usr/src/games/adventure/okplay.c +++ b/usr/src/games/adventure/okplay.c @@ -1,4 +1,4 @@ -static char sccsid[] = " okplay.c 1.1 82/05/11 "; +static char sccsid[] = " okplay.c 4.1 82/05/11 "; main(argc, argv) int argc; char *argv[]; diff --git a/usr/src/games/adventure/save.c b/usr/src/games/adventure/save.c index 110b954f7f..fb50ddeff3 100644 --- a/usr/src/games/adventure/save.c +++ b/usr/src/games/adventure/save.c @@ -6,7 +6,7 @@ * (but people that do that get what they deserve) */ -static char sccsid[] = " save.c 1.1 82/05/11 "; +static char sccsid[] = " save.c 4.1 82/05/11 "; #include int filesize; /* accessible to caller */ diff --git a/usr/src/games/adventure/subr.c b/usr/src/games/adventure/subr.c index 4a87b7146c..d2148780fd 100644 --- a/usr/src/games/adventure/subr.c +++ b/usr/src/games/adventure/subr.c @@ -1,7 +1,7 @@ # /* Re-coding of advent in C: subroutines from main */ -static char sccsid[] = " subr.c 1.1 82/05/11 "; +static char sccsid[] = " subr.c 4.1 82/05/11 "; # include "hdr.h" diff --git a/usr/src/games/adventure/vocab.c b/usr/src/games/adventure/vocab.c index 6e9d0b9268..cf10493721 100644 --- a/usr/src/games/adventure/vocab.c +++ b/usr/src/games/adventure/vocab.c @@ -1,7 +1,7 @@ # /* Re-coding of advent in C: data structure routines */ -static char sccsid[] = " vocab.c 1.1 82/05/11 "; +static char sccsid[] = " vocab.c 4.1 82/05/11 "; # include "hdr.h" diff --git a/usr/src/games/adventure/wizard.c b/usr/src/games/adventure/wizard.c index 1dbb4edd52..0afd51c46a 100644 --- a/usr/src/games/adventure/wizard.c +++ b/usr/src/games/adventure/wizard.c @@ -1,7 +1,7 @@ # /* Re-coding of advent in C: privileged operations */ -static char sccsid[] = " wizard.c 1.1 82/05/11 "; +static char sccsid[] = " wizard.c 4.1 82/05/11 "; # include "hdr.h"