Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/modules/klibc/bzero.c

Source at commit 1325 created 12 years 11 months ago.
By cosmo1t, added 6960
1#include <string.h>
2
3void bzero(void *dst, size_t n)
4{
5memset(dst, 0, n);
6}
7

Archive Download this file

Revision: 1325