source: trunk/minix/lib/other/bzero.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 166 bytes
Line 
1#include <lib.h>
2/* bzero - Berklix subset of memset */
3
4#include <string.h>
5
6void bzero(dst, length)
7void *dst;
8size_t length;
9{
10 (void) memset(dst, 0, length);
11}
Note: See TracBrowser for help on using the repository browser.