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

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

size_t 
_malloc_usable_size_r (struct _reent *ptr, void *mem)
{
  return malloc_usable_size (mem);
}