Chameleon

Chameleon Svn Source Tree

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

Source at commit 1380 created 12 years 10 months ago.
By azimutz, Delete Package folders and sync the rest with trunk (r1379), on these two.
1#include <string.h>
2
3void bzero(void *dst, size_t n)
4{
5memset(dst, 0, n);
6}
7

Archive Download this file

Revision: 1380