mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
16 lines
228 B
C
16 lines
228 B
C
/* 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 */
|