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
devctl.h: update for POSIX-1.2024
[newlib-cygwin.git]
/
newlib
/
libc
/
machine
/
xstormy16
/
callocr.c
blob
3e5053c6765040c0719bc44315625cae25c4ac65
1
#include <malloc.h>
2
3
void
*
4
_calloc_r
(
struct
_reent
*
r
,
size_t
a
,
size_t
b
)
5
{
6
return
calloc
(
a
,
b
);
7
}