aboutsummaryrefslogtreecommitdiff
path: root/contrib/ldns/compat/malloc.c
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2013-02-15 13:44:18 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2013-02-15 13:44:18 +0000
commit7b5038d71c5c74ab863c1ff3fec33de94bf35a57 (patch)
treed957b587bb5a1e7defbd76792f0b178819595c24 /contrib/ldns/compat/malloc.c
parentab15d8039eb1bed48f07136aef79fb6893bb920c (diff)
parenta1ba2d1ca3a1d6c9c36a79a196dd3ccb83ede353 (diff)
downloadsrc-7b5038d71c5c74ab863c1ff3fec33de94bf35a57.tar.gz
src-7b5038d71c5c74ab863c1ff3fec33de94bf35a57.zip
Import LDNS and build it as an internal library.
Notes
Notes: svn path=/head/; revision=246827
Diffstat (limited to 'contrib/ldns/compat/malloc.c')
-rw-r--r--contrib/ldns/compat/malloc.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/contrib/ldns/compat/malloc.c b/contrib/ldns/compat/malloc.c
new file mode 100644
index 000000000000..bbc632e4f63f
--- /dev/null
+++ b/contrib/ldns/compat/malloc.c
@@ -0,0 +1,22 @@
+/* Just a replacement, if the original malloc is not
+ GNU-compliant. See autoconf documentation. */
+
+#if HAVE_CONFIG_H
+#include <ldns/config.h>
+#endif
+#undef malloc
+
+#include <sys/types.h>
+
+void *malloc ();
+
+/* Allocate an N-byte block of memory from the heap.
+ If N is zero, allocate a 1-byte block. */
+
+void *
+rpl_malloc (size_t n)
+{
+ if (n == 0)
+ n = 1;
+ return malloc (n);
+}