Chameleon

Chameleon Svn Source Tree

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

Source at commit 1297 created 12 years 9 months ago.
By meklort, Removed libsaioh from all modules. Removed i386 includes from modules.
1#include <string.h>
2
3void bzero(void *dst, size_t n)
4{
5memset(dst, 0, n);
6}
7

Archive Download this file

Revision: 1297