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

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

void *
_malloc_r (struct _reent *ptr, size_t size)
{
  return malloc (size);
}