fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libc / machine / powerpc / vec_realloc.c
blobe192e399d02cad1a00865bc28ab93863a541fa42
1 /* vec_realloc.c -- a wrapper for _vec_realloc_r. */
3 #include <_ansi.h>
4 #include <reent.h>
5 #include <stdlib.h>
7 #ifndef _REENT_ONLY
9 _PTR
10 _DEFUN (vec_realloc, (ap, nbytes),
11 _PTR ap _AND
12 size_t nbytes)
14 return _vec_realloc_r (_REENT, ap, nbytes);
17 #endif