source: trunk/libs/newlib/src/newlib/libc/machine/powerpc/vec_realloc.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 239 bytes
Line 
1/* vec_realloc.c -- a wrapper for _vec_realloc_r.  */
2
3#include <_ansi.h>
4#include <reent.h>
5#include <stdlib.h>
6
7#ifndef _REENT_ONLY
8
9void *
10vec_realloc (void *ap,
11        size_t nbytes)
12{
13  return _vec_realloc_r (_REENT, ap, nbytes);
14}
15
16#endif
Note: See TracBrowser for help on using the repository browser.