mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
8c383e9ae7
Move the multiplex logic out of the build and into source files to make the build rules a lot simpler.
8 lines
105 B
C
8 lines
105 B
C
#include <malloc.h>
|
|
|
|
void *
|
|
_calloc_r (struct _reent *r, size_t a, size_t b)
|
|
{
|
|
return calloc (a, b);
|
|
}
|