mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
8 lines
122 B
C
8 lines
122 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
void *
|
||
|
_realloc_r (struct _reent *ptr, void *old, size_t newlen)
|
||
|
{
|
||
|
return realloc (old, newlen);
|
||
|
}
|