newlib-cygwin/newlib/libc/machine/xstormy16/freer.c

8 lines
78 B
C

#include <malloc.h>
void
_free_r (struct _reent *r, void *x)
{
free (x);
}