4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-15 19:09:58 +08:00

8 lines
117 B
C
Raw Normal View History

#include <stdlib.h>
void *
_calloc_r (struct _reent *ptr, size_t size, size_t len)
{
return calloc (size, len);
}