1 /* Copyright (c) 2002 Geoffrey Keating <geoffk@geoffk.org> */ 2 #include <malloc.h> 3 4 void * _malloc_r(struct _reent * r,size_t sz)5 _malloc_r (struct _reent *r, size_t sz) 6 { 7 return malloc (sz); 8 } 9