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

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

void * 
_valloc_r (struct _reent *ptr, size_t bytes)
{
  return valloc (bytes);
}