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

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

void *
_calloc_r (struct _reent *ptr, size_t size, size_t len)
{
  return calloc (size, len);
}