Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 815 - (hide 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 niro 815 #include <string.h>
2    
3     void bzero(void *dst, size_t n)
4     {
5     memset(dst, 0, n);
6     }