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/larn | |
parent | beffd26bc80a987a3bdba59f0b211e2cfbb132ad (diff) | |
download | FreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.zip FreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.tar.gz |
copyright/sccsid/rcsid cleanup.
Diffstat (limited to 'games/larn')
-rw-r--r-- | games/larn/bill.c | 6 | ||||
-rw-r--r-- | games/larn/data.c | 4 | ||||
-rw-r--r-- | games/larn/fortune.c | 4 | ||||
-rw-r--r-- | games/larn/main.c | 2 | ||||
-rw-r--r-- | games/larn/store.c | 6 |
5 files changed, 17 insertions, 5 deletions
diff --git a/games/larn/bill.c b/games/larn/bill.c index 59eb96e..eff826d 100644 --- a/games/larn/bill.c +++ b/games/larn/bill.c @@ -29,12 +29,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[] = "@(#)bill.c 5.2 (Berkeley) 5/28/91"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <sys/file.h> diff --git a/games/larn/data.c b/games/larn/data.c index 1e6fcdf..a09d55c 100644 --- a/games/larn/data.c +++ b/games/larn/data.c @@ -32,7 +32,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)data.c 5.3 (Berkeley) 5/13/91"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* data.c Larn is copyrighted 1986 by Noah Morgan. */ diff --git a/games/larn/fortune.c b/games/larn/fortune.c index f5cff64..798aa2e 100644 --- a/games/larn/fortune.c +++ b/games/larn/fortune.c @@ -32,7 +32,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)fortune.c 5.5 (Berkeley) 6/10/91"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* fortune.c Larn is copyrighted 1986 by Noah Morgan. */ diff --git a/games/larn/main.c b/games/larn/main.c index 7aa5697..cb500d3 100644 --- a/games/larn/main.c +++ b/games/larn/main.c @@ -4,7 +4,7 @@ #include <sys/stat.h> #include "header.h" #include <pwd.h> -static char copyright[]="\nLarn is copyrighted 1986 by Noah Morgan.\n"; +static const char copyright[]="\nLarn is copyrighted 1986 by Noah Morgan.\n"; int srcount=0; /* line counter for showstr() */ int dropflag=0; /* if 1 then don't lookforobject() next round */ int rmst=80; /* random monster creation counter */ diff --git a/games/larn/store.c b/games/larn/store.c index 9f64c95..0036c87 100644 --- a/games/larn/store.c +++ b/games/larn/store.c @@ -29,12 +29,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[] = "@(#)store.c 5.4 (Berkeley) 5/13/91"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ /* store.c Larn is copyrighted 1986 by Noah Morgan. */ |