Uninitialized vector entry?
[minix3.git] / lib / other / bzero.c
blobfc842499b597c530936a9b70fc774a6395fd3970
1 #include <lib.h>
2 /* bzero - Berklix subset of memset */
4 #include <string.h>
6 void bzero(dst, length)
7 void *dst;
8 size_t length;
10 (void) memset(dst, 0, length);