summaryrefslogtreecommitdiffstats
path: root/games/adventure
diff options
context:
space:
mode:
authorbillf <billf@FreeBSD.org>1999-11-30 03:50:02 +0000
committerbillf <billf@FreeBSD.org>1999-11-30 03:50:02 +0000
commit002f48507805c24a9a5019679ed0b1f2e3e258de (patch)
tree60a6a2ac5db6d7bb41d3d4f0b429d8f620a37c15 /games/adventure
parentbeffd26bc80a987a3bdba59f0b211e2cfbb132ad (diff)
downloadFreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.zip
FreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.tar.gz
copyright/sccsid/rcsid cleanup.
Diffstat (limited to 'games/adventure')
-rw-r--r--games/adventure/crc.c6
-rw-r--r--games/adventure/done.c6
-rw-r--r--games/adventure/init.c6
-rw-r--r--games/adventure/io.c6
-rw-r--r--games/adventure/main.c8
-rw-r--r--games/adventure/save.c4
-rw-r--r--games/adventure/setup.c6
-rw-r--r--games/adventure/subr.c6
-rw-r--r--games/adventure/vocab.c6
-rw-r--r--games/adventure/wizard.c6
10 files changed, 42 insertions, 18 deletions
diff --git a/games/adventure/crc.c b/games/adventure/crc.c
index 952d102..1bbec1e 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 9cb25bf..7baa5d7 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 893e303..352aa61 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 7b929f6..302e744 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 39a90c4..290ba93 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 907d5bf..7612c1d 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 c67d4c7..aadfd2b 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 ffac61a..7579fe5 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 84d558b..03d6102 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 b02c900..c4ac3c8 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 */
OpenPOWER on IntegriCloud