aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/sys/linux/callocr.c
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);
}