home *** CD-ROM | disk | FTP | other *** search
/ Chip: Windows 2000 Professional Resource Kit / W2KPRK.iso / apps / posix / source / BSDPSX / BZERO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1999-11-17  |  167 b   |  11 lines

  1. #include <string.h>
  2.  
  3. /*
  4.  * bzero -- Posix implementation usint memset  DF_MSS
  5.  */
  6. void bzero(void *b, register size_t length)
  7. {
  8.     memset(b, 0, length);
  9.  
  10. }
  11.