home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / GNU / sas_unix_lib.lha / unix / src / bzero.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-19  |  100 b   |  8 lines

  1. #include "amiga.h"
  2. #include <string.h>
  3.  
  4. void bzero(char *b, int length)
  5. {
  6.   memset(b, 0, length);
  7. }
  8.