1 #include <picolibc.h>
2 
3 #include <malloc.h>
4 
5 void
_free_r(struct _reent * r,void * x)6 _free_r (struct _reent *r, void *x)
7 {
8   free (x);
9 }
10