#warning "Sorry, you will have to find a working realloc on your own"

#include "config.h"
#include <sys/types.h>

inline void *
rpl_realloc(ptr, size)
	void *ptr;
        size_t size;
{       
	return realloc(ptr, size);
}


syntax highlighted by Code2HTML, v. 0.9.1