diff options
author | des <des@FreeBSD.org> | 2013-02-15 13:44:18 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2013-02-15 13:44:18 +0000 |
commit | e6d4c5218f404b3d9409e27fb0fa1f60413ef6cb (patch) | |
tree | d957b587bb5a1e7defbd76792f0b178819595c24 /contrib/ldns/compat/malloc.c | |
parent | b585f0db6b4ff1dffb058cc09881606f50a2dc53 (diff) | |
parent | 481a5cc876eaea3ecda6f120c33620aaab58f19d (diff) | |
download | FreeBSD-src-e6d4c5218f404b3d9409e27fb0fa1f60413ef6cb.zip FreeBSD-src-e6d4c5218f404b3d9409e27fb0fa1f60413ef6cb.tar.gz |
Import LDNS and build it as an internal library.
Diffstat (limited to 'contrib/ldns/compat/malloc.c')
-rw-r--r-- | contrib/ldns/compat/malloc.c | 22 |
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 0000000..bbc632e --- /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); +} |