repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git]
/
newlib
/
libc
/
machine
/
powerpc
/
vec_free.c
blob
c893e5ab42f0dbdba614a913d75de7141b776677
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
vec_free
(
void
*
aptr
)
10
{
11
_free_r
(
_REENT
,
aptr
);
12
}
13
14
#endif
/* !_REENT_ONLY */