mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 20:39:33 +08:00
9087163804
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
15 lines
205 B
C
15 lines
205 B
C
/* vec_free.c - a wrapper for _free_r */
|
|
#include <_ansi.h>
|
|
#include <reent.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
void
|
|
vec_free (void *aptr)
|
|
{
|
|
_free_r (_REENT, aptr);
|
|
}
|
|
|
|
#endif /* !_REENT_ONLY */
|