mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 19:40:07 +08:00
8 lines
100 B
C
8 lines
100 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
void *
|
||
|
_malloc_r (struct _reent *ptr, size_t size)
|
||
|
{
|
||
|
return malloc (size);
|
||
|
}
|