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_realloc.c
blob
e192e399d02cad1a00865bc28ab93863a541fa42
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
_PTR
10
_DEFUN
(
vec_realloc
, (
ap
,
nbytes
),
11
_PTR ap _AND
12
size_t
nbytes
)
13
{
14
return
_vec_realloc_r
(
_REENT
,
ap
,
nbytes
);
15
}
16
17
#endif