repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
gcc
/
newlib
/
libc
/
machine
/
powerpc
/
vec_free.c
blob
b55c52dde9b6e107b5e32baadf2b9cad063d5705
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
8
void
9
_DEFUN
(
vec_free
, (
aptr
),
10
_PTR aptr
)
11
{
12
_free_r
(
_REENT
,
aptr
);
13
}
14
15
#endif
/* !_REENT_ONLY */