From: W.C.A. Wijngaards Date: Mon, 14 Apr 2014 13:02:55 +0000 (+0200) Subject: Fixup warning in malloc compile (no arguments in defintion) X-Git-Tag: release-1.7.0-rc1~161^2~6^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=674bcc4d3e24781c355435c7cba23c028f797e37;p=thirdparty%2Fldns.git Fixup warning in malloc compile (no arguments in defintion) --- diff --git a/compat/malloc.c b/compat/malloc.c index bbc632e4..352c6d47 100644 --- a/compat/malloc.c +++ b/compat/malloc.c @@ -8,7 +8,7 @@ #include -void *malloc (); +void *malloc (size_t n); /* Allocate an N-byte block of memory from the heap. If N is zero, allocate a 1-byte block. */