Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vec_free.c « powerpc « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c893e5ab42f0dbdba614a913d75de7141b776677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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 */