Retro68/gcc/newlib/libc/sys/linux/vallocr.c

8 lines
103 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
#include <stdlib.h>
void *
_valloc_r (struct _reent *ptr, size_t bytes)
{
return valloc (bytes);
}