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_realloc.c
blob
db6f3206099ca9d0393ec15190db3c267f7f7ac6
1
/* vec_realloc.c -- a wrapper for _vec_realloc_r. */
2
3
#include <_ansi.h>
4
#include <reent.h>
5
#include <stdlib.h>
6
7
#ifndef _REENT_ONLY
8
9
void
*
10
vec_realloc
(
void
*
ap
,
11
size_t
nbytes
)
12
{
13
return
_vec_realloc_r
(
_REENT
,
ap
,
nbytes
);
14
}
15
16
#endif