diff options
author | bde <bde@FreeBSD.org> | 1996-12-13 13:59:34 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-12-13 13:59:34 +0000 |
commit | 87c4dfcb387f45cc22d69953964eea0fa4acb0b9 (patch) | |
tree | 1f1455363d9a6415eea7fcc5703a94bffccf2343 /games | |
parent | 8f51351988bc899b89223df15506d9533024f8bd (diff) | |
download | FreeBSD-src-87c4dfcb387f45cc22d69953964eea0fa4acb0b9.zip FreeBSD-src-87c4dfcb387f45cc22d69953964eea0fa4acb0b9.tar.gz |
Fixed missing declaration of malloc().
Diffstat (limited to 'games')
-rw-r--r-- | games/adventure/vocab.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/adventure/vocab.c b/games/adventure/vocab.c index f5cfb3a..b34b42e 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; |