1 #include <stdlib.h>
2 
3 void
_cfree_r(struct _reent * ptr,void * mem)4 _cfree_r (struct _reent *ptr, void *mem)
5 {
6   return cfree (mem);
7 }
8