diff options
Diffstat (limited to 'contrib/unbound/compat/malloc.c')
| -rw-r--r-- | contrib/unbound/compat/malloc.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/contrib/unbound/compat/malloc.c b/contrib/unbound/compat/malloc.c new file mode 100644 index 000000000000..74beae01c98c --- /dev/null +++ b/contrib/unbound/compat/malloc.c @@ -0,0 +1,20 @@ +/* Just a replacement, if the original malloc is not + GNU-compliant. See autoconf documentation. */ + +#include "config.h" +#undef malloc +#include <sys/types.h> + +/* provide a prototype */ +void *malloc (size_t n); + +/* Allocate an N-byte block of memory from the heap. + If N is zero, allocate a 1-byte block. */ + +void * +rpl_malloc_unbound (size_t n) +{ + if (n == 0) + n = 1; + return malloc (n); +} |
