some cleanup from bde@freebsd
authorderaadt <deraadt@openbsd.org>
Sat, 14 Dec 1996 15:21:26 +0000 (15:21 +0000)
committerderaadt <deraadt@openbsd.org>
Sat, 14 Dec 1996 15:21:26 +0000 (15:21 +0000)
games/adventure/hdr.h
games/adventure/setup.c
games/adventure/vocab.c

index 6e1440b..9b8a7a5 100644 (file)
@@ -158,7 +158,6 @@ int turns,lmwarn,iwest,knfloc,detail,   /* various flags & counters     */
 
 int demo,newloc,limit;
 
-char *malloc();
 char *decr();
 unsigned long crc();
 
index 042e1e0..c5c4a96 100644 (file)
@@ -97,6 +97,8 @@ char *argv[];
 
        while ((c = getc(infile)) != EOF)
        {
+               if (count++ % LINE == 0)
+                       printf("\n\t");
                if (linestart && c == ' ') /* Convert first spaces to tab */
                {
                        printf("0x%02x,", ('\t' ^ random()) & 0xFF);
@@ -113,7 +115,7 @@ char *argv[];
                        linestart = YES; /* Ready to convert spaces again */
                        break;
                }
-               if (count++ % LINE == 0)   /* Finished a line? */
+               if (count++ % LINE == 0)
                        printf("\n\t");
                printf("0x%02x,", (c ^ random()) & 0xFF);
        }
index f6ae165..dbd451c 100644 (file)
@@ -48,7 +48,8 @@ static char rcsid[] = "$NetBSD: vocab.c,v 1.2 1995/03/21 12:05:13 cgd Exp $";
 
 /*      Re-coding of advent in C: data structure routines               */
 
-# include "hdr.h"
+#include <stdlib.h>
+#include "hdr.h"
 
 dstroy(object)
 int object;