repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 4.00~pre54+dfsg.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
calloc.c
blob
04b3c5e5aadc3c2095aed038e71297db44a8653e
1
/*
2
* calloc.c
3
*/
4
5
#include <stdlib.h>
6
#include <string.h>
7
8
/* FIXME: This should look for multiplication overflow */
9
10
void
*
calloc
(
size_t
nmemb
,
size_t
size
)
11
{
12
return
zalloc
(
size
*
nmemb
);
13
}