aboutsummaryrefslogtreecommitdiff
path: root/games/adventure
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1996-12-13 13:59:34 +0000
committerBruce Evans <bde@FreeBSD.org>1996-12-13 13:59:34 +0000
commit5ce1f070f94c7ba575e9ae4a722ef07e4e88e936 (patch)
tree1f1455363d9a6415eea7fcc5703a94bffccf2343 /games/adventure
parentb784c223ee8112f71e39a07dfd994a98e6c5db1b (diff)
downloadsrc-5ce1f070f94c7ba575e9ae4a722ef07e4e88e936.tar.gz
src-5ce1f070f94c7ba575e9ae4a722ef07e4e88e936.zip
Fixed missing declaration of malloc().
Notes
Notes: svn path=/head/; revision=20400
Diffstat (limited to 'games/adventure')
-rw-r--r--games/adventure/vocab.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/games/adventure/vocab.c b/games/adventure/vocab.c
index f5cfb3a4b47b..b34b42ef238f 100644
--- a/games/adventure/vocab.c
+++ b/games/adventure/vocab.c
@@ -43,7 +43,8 @@ static char sccsid[] = "@(#)vocab.c 8.1 (Berkeley) 5/31/93";
/* Re-coding of advent in C: data structure routines */
#include <stdio.h>
-# include "hdr.h"
+#include <stdlib.h>
+#include "hdr.h"
dstroy(object)
int object;