repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Uninitialized vector entry?
[minix3.git]
/
lib
/
other
/
bzero.c
blob
fc842499b597c530936a9b70fc774a6395fd3970
1
#include <lib.h>
2
/* bzero - Berklix subset of memset */
3
4
#include <string.h>
5
6
void
bzero
(
dst
,
length
)
7
void
*
dst
;
8
size_t
length
;
9
{
10
(
void
)
memset
(
dst
,
0
,
length
);
11
}