4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-15 19:09:58 +08:00

16 lines
228 B
C
Raw Normal View History

/* vec_free.c - a wrapper for _free_r */
#include <_ansi.h>
#include <reent.h>
#include <stdlib.h>
#ifndef _REENT_ONLY
void
_DEFUN (vec_free, (aptr),
_PTR aptr)
{
_free_r (_REENT, aptr);
}
#endif /* !_REENT_ONLY */