Chameleon

Chameleon Svn Source Tree

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

Source at commit 1308 created 12 years 8 months ago.
By meklort, Add a few placeholders for file io
1#include <string.h>
2
3void bzero(void *dst, size_t n)
4{
5memset(dst, 0, n);
6}
7

Archive Download this file

Revision: 1308