Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/oreo-mr1-release
/
.
/
com32
/
lib
/
calloc.c
blob: 04b3c5e5aadc3c2095aed038e71297db44a8653e [
file
] [
log
] [
blame
] [
edit
]
/*
* calloc.c
*/
#include
<stdlib.h>
#include
<string.h>
/* FIXME: This should look for multiplication overflow */
void
*
calloc
(
size_t
nmemb
,
size_t
size
)
{
return
zalloc
(
size
*
nmemb
);
}