From d703de28b293da7f172f93e015e019cedb309e65 Mon Sep 17 00:00:00 2001 From: cgd Date: Sun, 6 Oct 1996 18:27:25 +0000 Subject: [PATCH] include stdlib.h to bring malloc()'s prototype into scope. --- usr.bin/file/softmagic.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.bin/file/softmagic.c b/usr.bin/file/softmagic.c index b0e1e1631171..be665fde66ca 100644 --- a/usr.bin/file/softmagic.c +++ b/usr.bin/file/softmagic.c @@ -26,6 +26,7 @@ */ #include +#include #include #include #include @@ -34,7 +35,7 @@ #ifndef lint static char *moduleid = - "@(#)$Id: softmagic.c,v 1.10 1996/10/05 20:20:31 christos Exp $"; + "@(#)$Id: softmagic.c,v 1.11 1996/10/06 18:27:25 cgd Exp $"; #endif /* lint */ static int match __P((unsigned char *, int));