Retro68/gcc/newlib/libc/sys/linux/vallocr.c
2012-03-27 01:51:53 +02:00

8 lines
103 B
C

#include <stdlib.h>
void *
_valloc_r (struct _reent *ptr, size_t bytes)
{
return valloc (bytes);
}