diff options
Diffstat (limited to 'games/adventure')
-rw-r--r-- | games/adventure/crc.c | 6 | ||||
-rw-r--r-- | games/adventure/done.c | 6 | ||||
-rw-r--r-- | games/adventure/init.c | 6 | ||||
-rw-r--r-- | games/adventure/io.c | 6 | ||||
-rw-r--r-- | games/adventure/main.c | 8 | ||||
-rw-r--r-- | games/adventure/save.c | 4 | ||||
-rw-r--r-- | games/adventure/setup.c | 6 | ||||
-rw-r--r-- | games/adventure/subr.c | 6 | ||||
-rw-r--r-- | games/adventure/vocab.c | 6 | ||||
-rw-r--r-- | games/adventure/wizard.c | 6 |
10 files changed, 42 insertions, 18 deletions
diff --git a/games/adventure/crc.c b/games/adventure/crc.c index 952d102343e0..1bbec1e60c4e 100644 --- a/games/adventure/crc.c +++ b/games/adventure/crc.c @@ -32,13 +32,15 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)crc.c 8.1 (Berkeley) 5/31/93"; static char ORIGINAL_sccsid[] = "@(#)crc.c 5.2 (Berkeley) 4/4/91"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <sys/types.h> diff --git a/games/adventure/done.c b/games/adventure/done.c index 9cb25bf87eb1..7baa5d71f126 100644 --- a/games/adventure/done.c +++ b/games/adventure/done.c @@ -34,12 +34,14 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)done.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* Re-coding of advent in C: termination routines */ diff --git a/games/adventure/init.c b/games/adventure/init.c index 893e3039413e..352aa6194d97 100644 --- a/games/adventure/init.c +++ b/games/adventure/init.c @@ -34,12 +34,14 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 6/2/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* Re-coding of advent in C: data initialization */ diff --git a/games/adventure/io.c b/games/adventure/io.c index 7b929f674515..302e7445cd9b 100644 --- a/games/adventure/io.c +++ b/games/adventure/io.c @@ -34,12 +34,14 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* Re-coding of advent in C: file i/o and user i/o */ diff --git a/games/adventure/main.c b/games/adventure/main.c index 39a90c436da0..290ba9318fe3 100644 --- a/games/adventure/main.c +++ b/games/adventure/main.c @@ -34,18 +34,20 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1991, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint +#if 0 static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/2/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* Re-coding of advent in C: main program */ diff --git a/games/adventure/save.c b/games/adventure/save.c index 907d5bff25f4..7612c1d127dc 100644 --- a/games/adventure/save.c +++ b/games/adventure/save.c @@ -37,7 +37,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)save.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <stdio.h> diff --git a/games/adventure/setup.c b/games/adventure/setup.c index c67d4c77a3a7..aadfd2bd784f 100644 --- a/games/adventure/setup.c +++ b/games/adventure/setup.c @@ -35,13 +35,17 @@ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1991, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint +#if 0 static char sccsid[] = "@(#)setup.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/adventure/subr.c b/games/adventure/subr.c index ffac61a1b547..7579fe51c627 100644 --- a/games/adventure/subr.c +++ b/games/adventure/subr.c @@ -34,12 +34,14 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)subr.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* Re-coding of advent in C: subroutines from main */ diff --git a/games/adventure/vocab.c b/games/adventure/vocab.c index 84d558b45e0b..03d61026851f 100644 --- a/games/adventure/vocab.c +++ b/games/adventure/vocab.c @@ -34,12 +34,14 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)vocab.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* Re-coding of advent in C: data structure routines */ diff --git a/games/adventure/wizard.c b/games/adventure/wizard.c index b02c9004bc31..c4ac3c8ed5eb 100644 --- a/games/adventure/wizard.c +++ b/games/adventure/wizard.c @@ -34,12 +34,14 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)wizard.c 8.1 (Berkeley) 6/2/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* Re-coding of advent in C: privileged operations */ |