source: trunk/libs/newlib/src/newlib/libc/machine/powerpc/vec_free.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: 205 bytes
Line 
1/* vec_free.c - a wrapper for _free_r */
2#include <_ansi.h>
3#include <reent.h>
4#include <stdlib.h>
5
6#ifndef _REENT_ONLY
7
8void
9vec_free (void *aptr)
10{
11  _free_r (_REENT, aptr);
12}
13
14#endif /* !_REENT_ONLY */
Note: See TracBrowser for help on using the repository browser.