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

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

void * 
_pvalloc_r (struct _reent *ptr, size_t bytes)
{
  return pvalloc (bytes);
}