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
/
xstormy16
/
reallocr.c
blob
2bf538557b06e671f829f8b5881a845cc194a064
1
#include <malloc.h>
2
3
void
*
4
_realloc_r
(
struct
_reent
*
r
,
void
*
x
,
size_t
sz
)
5
{
6
return
realloc
(
x
,
sz
);
7
}