Welcome to mirror list, hosted at ThFree Co, Russian Federation.

reallocr.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 873c1b0e53589b7c53472736993a97025d910c99 (plain)
1
2
3
4
5
6
7
#include <stdlib.h>

void *
_realloc_r (struct _reent *ptr, void *old, size_t newlen)
{
  return realloc (old, newlen);
}