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 3.35.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
calloc.c
blob
ebab49bfb4c7c8804e1b13c3162ef0dcce835b8e
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
void
*
ptr
;
13
14
size
*=
nmemb
;
15
ptr
=
malloc
(
size
);
16
if
(
ptr
)
17
memset
(
ptr
,
0
,
size
);
18
19
return
ptr
;
20
}