mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-21 05:49:19 +08:00
8 lines
78 B
C
8 lines
78 B
C
|
#include <malloc.h>
|
||
|
|
||
|
void
|
||
|
_free_r (struct _reent *r, void *x)
|
||
|
{
|
||
|
free (x);
|
||
|
}
|