fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libc / machine / xstormy16 / mallocr.c
blob23e02f74c51ba542f85117976035f64ca3a10920
1 #include <malloc.h>
3 #ifdef DEFINE_MALLOC
4 _PTR
5 _malloc_r (struct _reent *r, size_t sz)
7 return malloc (sz);
9 #endif
11 #ifdef DEFINE_CALLOC
12 _PTR
13 _calloc_r (struct _reent *r, size_t a, size_t b)
15 return calloc (a, b);
17 #endif
19 #ifdef DEFINE_FREE
20 void
21 _free_r (struct _reent *r, _PTR x)
23 free (x);
25 #endif
27 #ifdef DEFINE_REALLOC
28 _PTR
29 _realloc_r (struct _reent *r, _PTR x, size_t sz)
31 return realloc (x, sz);
33 #endif