diff options
author | billf <billf@FreeBSD.org> | 1999-11-30 03:50:02 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1999-11-30 03:50:02 +0000 |
commit | 002f48507805c24a9a5019679ed0b1f2e3e258de (patch) | |
tree | 60a6a2ac5db6d7bb41d3d4f0b429d8f620a37c15 /games/rogue | |
parent | beffd26bc80a987a3bdba59f0b211e2cfbb132ad (diff) | |
download | FreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.zip FreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.tar.gz |
copyright/sccsid/rcsid cleanup.
Diffstat (limited to 'games/rogue')
-rw-r--r-- | games/rogue/curses.c | 6 | ||||
-rw-r--r-- | games/rogue/hit.c | 6 | ||||
-rw-r--r-- | games/rogue/init.c | 4 | ||||
-rw-r--r-- | games/rogue/inventory.c | 4 | ||||
-rw-r--r-- | games/rogue/level.c | 4 | ||||
-rw-r--r-- | games/rogue/machdep.c | 4 | ||||
-rw-r--r-- | games/rogue/main.c | 6 | ||||
-rw-r--r-- | games/rogue/message.c | 6 | ||||
-rw-r--r-- | games/rogue/monster.c | 6 | ||||
-rw-r--r-- | games/rogue/move.c | 6 | ||||
-rw-r--r-- | games/rogue/object.c | 6 | ||||
-rw-r--r-- | games/rogue/pack.c | 6 | ||||
-rw-r--r-- | games/rogue/play.c | 4 | ||||
-rw-r--r-- | games/rogue/random.c | 6 | ||||
-rw-r--r-- | games/rogue/ring.c | 4 | ||||
-rw-r--r-- | games/rogue/room.c | 6 | ||||
-rw-r--r-- | games/rogue/save.c | 4 | ||||
-rw-r--r-- | games/rogue/score.c | 4 | ||||
-rw-r--r-- | games/rogue/spec_hit.c | 6 | ||||
-rw-r--r-- | games/rogue/throw.c | 4 | ||||
-rw-r--r-- | games/rogue/trap.c | 6 | ||||
-rw-r--r-- | games/rogue/use.c | 4 | ||||
-rw-r--r-- | games/rogue/zap.c | 4 |
23 files changed, 93 insertions, 23 deletions
diff --git a/games/rogue/curses.c b/games/rogue/curses.c index 6aa548e..246072d 100644 --- a/games/rogue/curses.c +++ b/games/rogue/curses.c @@ -32,12 +32,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[] = "@(#)curses.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/hit.c b/games/rogue/hit.c index ee74e6b..aef546c 100644 --- a/games/rogue/hit.c +++ b/games/rogue/hit.c @@ -32,12 +32,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[] = "@(#)hit.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/init.c b/games/rogue/init.c index fea5831..3c214cb 100644 --- a/games/rogue/init.c +++ b/games/rogue/init.c @@ -35,7 +35,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/inventory.c b/games/rogue/inventory.c index da321de..0923aa1 100644 --- a/games/rogue/inventory.c +++ b/games/rogue/inventory.c @@ -35,7 +35,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)inventory.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/level.c b/games/rogue/level.c index 7209ca8..1fb0e05 100644 --- a/games/rogue/level.c +++ b/games/rogue/level.c @@ -35,7 +35,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)level.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/machdep.c b/games/rogue/machdep.c index 9e770fc..a66bdb3 100644 --- a/games/rogue/machdep.c +++ b/games/rogue/machdep.c @@ -35,7 +35,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)machdep.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/main.c b/games/rogue/main.c index 2687e34..781c618 100644 --- a/games/rogue/main.c +++ b/games/rogue/main.c @@ -35,13 +35,17 @@ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1988, 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) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/message.c b/games/rogue/message.c index 10751c4..d9e2456 100644 --- a/games/rogue/message.c +++ b/games/rogue/message.c @@ -32,12 +32,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[] = "@(#)message.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/monster.c b/games/rogue/monster.c index da16eaa..e436f86 100644 --- a/games/rogue/monster.c +++ b/games/rogue/monster.c @@ -32,12 +32,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[] = "@(#)monster.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/move.c b/games/rogue/move.c index b892a0a..b989bf6 100644 --- a/games/rogue/move.c +++ b/games/rogue/move.c @@ -32,12 +32,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[] = "@(#)move.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/object.c b/games/rogue/object.c index 3315972..9056c54 100644 --- a/games/rogue/object.c +++ b/games/rogue/object.c @@ -32,12 +32,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[] = "@(#)object.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/pack.c b/games/rogue/pack.c index 9aab305..5ce3520 100644 --- a/games/rogue/pack.c +++ b/games/rogue/pack.c @@ -32,12 +32,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[] = "@(#)pack.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/play.c b/games/rogue/play.c index 1eea292..13b319d 100644 --- a/games/rogue/play.c +++ b/games/rogue/play.c @@ -35,7 +35,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)play.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/random.c b/games/rogue/random.c index 19102a2..8105e65 100644 --- a/games/rogue/random.c +++ b/games/rogue/random.c @@ -32,12 +32,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[] = "@(#)random.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include "rogue.h" diff --git a/games/rogue/ring.c b/games/rogue/ring.c index 9516b5f..4a4bb53 100644 --- a/games/rogue/ring.c +++ b/games/rogue/ring.c @@ -35,7 +35,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)ring.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/room.c b/games/rogue/room.c index 7cc1b1e..08e8b68 100644 --- a/games/rogue/room.c +++ b/games/rogue/room.c @@ -32,12 +32,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[] = "@(#)room.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/save.c b/games/rogue/save.c index 04c9652..938217b 100644 --- a/games/rogue/save.c +++ b/games/rogue/save.c @@ -35,7 +35,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 */ /* diff --git a/games/rogue/score.c b/games/rogue/score.c index 73fdda4..b1c9ccd 100644 --- a/games/rogue/score.c +++ b/games/rogue/score.c @@ -35,7 +35,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)score.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/spec_hit.c b/games/rogue/spec_hit.c index d0b99f5..bfcdc04 100644 --- a/games/rogue/spec_hit.c +++ b/games/rogue/spec_hit.c @@ -32,12 +32,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[] = "@(#)spec_hit.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/throw.c b/games/rogue/throw.c index 3a0205d..037beb2 100644 --- a/games/rogue/throw.c +++ b/games/rogue/throw.c @@ -35,7 +35,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)throw.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/trap.c b/games/rogue/trap.c index 861120d..dd8cfed 100644 --- a/games/rogue/trap.c +++ b/games/rogue/trap.c @@ -32,12 +32,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[] = "@(#)trap.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/use.c b/games/rogue/use.c index 62edc71..3c5f62b 100644 --- a/games/rogue/use.c +++ b/games/rogue/use.c @@ -35,7 +35,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)use.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/games/rogue/zap.c b/games/rogue/zap.c index 29bbbad..d4f991c 100644 --- a/games/rogue/zap.c +++ b/games/rogue/zap.c @@ -35,7 +35,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)zap.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* |