17bb167
Avoid an implicit declaration of malloc.  This is a real bug: The
17bb167
implied int return type results in pointer truncation, so this code
17bb167
cannot work.
17bb167
17bb167
diff --git a/inetcf.c b/inetcf.c
17bb167
index d77236782b53d47a..007b95afc96a179c 100644
17bb167
--- a/inetcf.c
17bb167
+++ b/inetcf.c
17bb167
@@ -14,6 +14,7 @@ static char sccsid[] = "@(#) inetcf.c 1.7 97/02/12 02:13:23";
17bb167
 #include <stdio.h>
17bb167
 #include <errno.h>
17bb167
 #include <string.h>
17bb167
+#include <stdlib.h>
17bb167
 
17bb167
 extern int errno;
17bb167
 extern void exit();