aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/machine/powerpc/vec_realloc.c
blob: e192e399d02cad1a00865bc28ab93863a541fa42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* vec_realloc.c -- a wrapper for _vec_realloc_r.  */

#include <_ansi.h>
#include <reent.h>
#include <stdlib.h>

#ifndef _REENT_ONLY

_PTR
_DEFUN (vec_realloc, (ap, nbytes),
	_PTR ap _AND
	size_t nbytes)
{
  return _vec_realloc_r (_REENT, ap, nbytes);
}

#endif