]> git.saurik.com Git - apple/network_cmds.git/blame_incremental - unbound/compat/malloc.c
network_cmds-543.200.16.tar.gz
[apple/network_cmds.git] / unbound / compat / malloc.c
... / ...
CommitLineData
1/* Just a replacement, if the original malloc is not
2 GNU-compliant. See autoconf documentation. */
3
4#include "config.h"
5#undef malloc
6#include <sys/types.h>
7
8void *malloc ();
9
10/* Allocate an N-byte block of memory from the heap.
11 If N is zero, allocate a 1-byte block. */
12
13void *
14rpl_malloc_unbound (size_t n)
15{
16 if (n == 0)
17 n = 1;
18 return malloc (n);
19}