Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/klibc/bzero.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 815 - (show annotations) (download)
Fri Apr 24 18:32:46 2009 UTC (15 years ago) by niro
File MIME type: text/plain
File size: 77 byte(s)
-updated to klibc-1.5.15
1 #include <string.h>
2
3 void bzero(void *dst, size_t n)
4 {
5 memset(dst, 0, n);
6 }