summaryrefslogtreecommitdiffstats
path: root/games/larn
diff options
context:
space:
mode:
Diffstat (limited to 'games/larn')
-rw-r--r--games/larn/bill.c2
-rw-r--r--games/larn/create.c1
-rw-r--r--games/larn/diag.c1
-rw-r--r--games/larn/display.c1
-rw-r--r--games/larn/global.c2
-rw-r--r--games/larn/help.c1
-rw-r--r--games/larn/io.c1
-rw-r--r--games/larn/main.c1
-rw-r--r--games/larn/monster.c1
-rw-r--r--games/larn/moreobj.c1
-rw-r--r--games/larn/movem.c1
-rw-r--r--games/larn/nap.c1
-rw-r--r--games/larn/object.c1
-rw-r--r--games/larn/regen.c1
-rw-r--r--games/larn/savelev.c1
-rw-r--r--games/larn/scores.c1
-rw-r--r--games/larn/store.c2
-rw-r--r--games/larn/tok.c1
18 files changed, 21 insertions, 0 deletions
diff --git a/games/larn/bill.c b/games/larn/bill.c
index bbb63dc..360b65d 100644
--- a/games/larn/bill.c
+++ b/games/larn/bill.c
@@ -29,6 +29,8 @@
* 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
diff --git a/games/larn/create.c b/games/larn/create.c
index ba0802c..50d3290 100644
--- a/games/larn/create.c
+++ b/games/larn/create.c
@@ -1,4 +1,5 @@
/* create.c Larn is copyrighted 1986 by Noah Morgan. */
+/* $FreeBSD$ */
#include "header.h"
extern char spelknow[],larnlevels[];
extern char beenhere[],wizard,level;
diff --git a/games/larn/diag.c b/games/larn/diag.c
index 53bdfd3..db4761c 100644
--- a/games/larn/diag.c
+++ b/games/larn/diag.c
@@ -1,4 +1,5 @@
/* diag.c Larn is copyrighted 1986 by Noah Morgan. */
+/* $FreeBSD$ */
#include <sys/types.h>
#include <sys/times.h>
#include <sys/stat.h>
diff --git a/games/larn/display.c b/games/larn/display.c
index 951d449..b0192c5 100644
--- a/games/larn/display.c
+++ b/games/larn/display.c
@@ -1,4 +1,5 @@
/* display.c Larn is copyrighted 1986 by Noah Morgan. */
+/* $FreeBSD$ */
#include "header.h"
#define makecode(_a,_b,_c) (((_a)<<16) + ((_b)<<8) + (_c))
diff --git a/games/larn/global.c b/games/larn/global.c
index 6bfb501..9fa19d9 100644
--- a/games/larn/global.c
+++ b/games/larn/global.c
@@ -1,4 +1,5 @@
/* global.c Larn is copyrighted 1986 by Noah Morgan.
+ * $FreeBSD$
*
* raiselevel() subroutine to raise the player one level
* loselevel() subroutine to lower the player by one level
@@ -16,6 +17,7 @@
* makemonst(lev) function to return monster number for a randomly selected monster
* positionplayer() function to be sure player is not in a wall
* quit() subroutine to ask if the player really wants to quit
+ *
*/
#include "header.h"
diff --git a/games/larn/help.c b/games/larn/help.c
index a8fd45c..0d06d6f 100644
--- a/games/larn/help.c
+++ b/games/larn/help.c
@@ -1,4 +1,5 @@
/* help.c Larn is copyrighted 1986 by Noah Morgan. */
+/* $FreeBSD$ */
#include "header.h"
/*
* help function to display the help info
diff --git a/games/larn/io.c b/games/larn/io.c
index 03f3727..a7fac5d 100644
--- a/games/larn/io.c
+++ b/games/larn/io.c
@@ -1,4 +1,5 @@
/* io.c Larn is copyrighted 1986 by Noah Morgan.
+ * $FreeBSD$
*
* Below are the functions in this file:
*
diff --git a/games/larn/main.c b/games/larn/main.c
index c42723e..a554031 100644
--- a/games/larn/main.c
+++ b/games/larn/main.c
@@ -1,4 +1,5 @@
/* main.c */
+/* $FreeBSD$ */
#include <sys/types.h>
#include <sys/stat.h>
#include "header.h"
diff --git a/games/larn/monster.c b/games/larn/monster.c
index 041c976..909cec1 100644
--- a/games/larn/monster.c
+++ b/games/larn/monster.c
@@ -1,5 +1,6 @@
/*
* monster.c Larn is copyrighted 1986 by Noah Morgan.
+ * $FreeBSD$
*
* This file contains the following functions:
* ----------------------------------------------------------------------------
diff --git a/games/larn/moreobj.c b/games/larn/moreobj.c
index 343773e..2f6f21c 100644
--- a/games/larn/moreobj.c
+++ b/games/larn/moreobj.c
@@ -1,4 +1,5 @@
/* moreobj.c Larn is copyrighted 1986 by Noah Morgan.
+ * $FreeBSD$
*
* Routines in this file:
*
diff --git a/games/larn/movem.c b/games/larn/movem.c
index d50d3ac..5091875 100644
--- a/games/larn/movem.c
+++ b/games/larn/movem.c
@@ -1,5 +1,6 @@
/*
* movem.c (move monster) Larn is copyrighted 1986 by Noah Morgan.
+ * $FreeBSD$
*
* Here are the functions in this file:
*
diff --git a/games/larn/nap.c b/games/larn/nap.c
index cbb1b56..7b294fa 100644
--- a/games/larn/nap.c
+++ b/games/larn/nap.c
@@ -1,4 +1,5 @@
/* nap.c Larn is copyrighted 1986 by Noah Morgan. */
+/* $FreeBSD$ */
#include <signal.h>
#include <sys/types.h>
#ifdef SYSV
diff --git a/games/larn/object.c b/games/larn/object.c
index 769bf20..230e7bc 100644
--- a/games/larn/object.c
+++ b/games/larn/object.c
@@ -1,4 +1,5 @@
/* object.c Larn is copyrighted 1986 by Noah Morgan. */
+/* $FreeBSD$ */
#include "header.h"
/*
diff --git a/games/larn/regen.c b/games/larn/regen.c
index 993cc8b..06ac28d 100644
--- a/games/larn/regen.c
+++ b/games/larn/regen.c
@@ -1,4 +1,5 @@
/* regen.c Larn is copyrighted 1986 by Noah Morgan. */
+/* $FreeBSD$ */
#include "header.h"
/*
*******
diff --git a/games/larn/savelev.c b/games/larn/savelev.c
index 4419acb..702801f 100644
--- a/games/larn/savelev.c
+++ b/games/larn/savelev.c
@@ -1,4 +1,5 @@
/* savelev.c Larn is copyrighted 1986 by Noah Morgan. */
+/* $FreeBSD$ */
#include "header.h"
extern struct cel *cell;
diff --git a/games/larn/scores.c b/games/larn/scores.c
index 0b32d42..c5c8b93 100644
--- a/games/larn/scores.c
+++ b/games/larn/scores.c
@@ -1,4 +1,5 @@
/* scores.c Larn is copyrighted 1986 by Noah Morgan.
+ * $FreeBSD$
*
* Functions in this file are:
*
diff --git a/games/larn/store.c b/games/larn/store.c
index 70d4779..e751554 100644
--- a/games/larn/store.c
+++ b/games/larn/store.c
@@ -29,6 +29,8 @@
* 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
diff --git a/games/larn/tok.c b/games/larn/tok.c
index be7fdb3..ff19398 100644
--- a/games/larn/tok.c
+++ b/games/larn/tok.c
@@ -1,4 +1,5 @@
/* tok.c Larn is copyrighted 1986 by Noah Morgan. */
+/* $FreeBSD$ */
#include <sys/types.h>
#ifdef SYSV
#include <fcntl.h>
OpenPOWER on IntegriCloud