]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
Fixup warning in malloc compile (no arguments in defintion)
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Mon, 14 Apr 2014 13:02:55 +0000 (15:02 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Mon, 14 Apr 2014 13:02:55 +0000 (15:02 +0200)
compat/malloc.c

index bbc632e4f63f43e5331e901df755a82915a3f665..352c6d4796fb5dbdcccb5fa8d0ffc0a14ac84b7d 100644 (file)
@@ -8,7 +8,7 @@
 
 #include <sys/types.h>
 
-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.  */