remove bogus declaration of malloc from tcp_wrappers

The declaration was already inactive when INET6 was enabled
and it causes a build error in the other case because of
a conflict with the correct definition in stdlib.h.

Discussed with:	dim, ume
MFC after:	2 weeks
This commit is contained in:
Andriy Gapon 2017-06-20 16:40:31 +00:00
parent a793c109ae
commit cec9c3b13b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=320151

View file

@ -28,10 +28,6 @@ static char sccs_id[] = "@(#) scaffold.c 1.6 97/03/21 19:27:24";
#define INADDR_NONE (-1) /* XXX should be 0xffffffff */
#endif
#ifndef INET6
extern char *malloc();
#endif
/* Application-specific. */
#include "tcpd.h"