libc/newlib/libc/stdlib/realloc.c

23 lines
347 B
C
Raw Normal View History

2000-02-17 20:39:52 +01:00
#ifdef MALLOC_PROVIDED
int _dummy_realloc = 1;
2000-02-17 20:39:52 +01:00
#else
/* realloc.c -- a wrapper for realloc_r. */
#include <_ansi.h>
#include <reent.h>
#include <stdlib.h>
#include <malloc.h>
#ifndef _REENT_ONLY
void *
2000-02-17 20:39:52 +01:00
_DEFUN (realloc, (ap, nbytes),
void *ap,
2000-02-17 20:39:52 +01:00
size_t nbytes)
{
return _realloc_r (_REENT, ap, nbytes);
}
#endif
#endif /* MALLOC_PROVIDED */