Chameleon

Chameleon Svn Source Tree

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

Source at commit 1321 created 12 years 8 months ago.
By meklort, Add __extendsfdf2 from LLVM
1#include <string.h>
2
3void bzero(void *dst, size_t n)
4{
5memset(dst, 0, n);
6}
7

Archive Download this file

Revision: 1321