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}
20