2000-02-17 11:39:52 -08:00
|
|
|
#ifdef MALLOC_PROVIDED
|
2017-11-14 00:01:14 -08:00
|
|
|
int _dummy_realloc = 1;
|
2000-02-17 11:39:52 -08:00
|
|
|
#else
|
|
|
|
/* realloc.c -- a wrapper for realloc_r. */
|
|
|
|
|
|
|
|
#include <_ansi.h>
|
|
|
|
#include <reent.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
|
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
|
2017-12-03 18:53:22 -08:00
|
|
|
void *
|
2017-12-03 19:43:30 -08:00
|
|
|
realloc (void *ap,
|
2000-02-17 11:39:52 -08:00
|
|
|
size_t nbytes)
|
|
|
|
{
|
|
|
|
return _realloc_r (_REENT, ap, nbytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif /* MALLOC_PROVIDED */
|