home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 1 / FFMCD01.bin / useful / dist / gnu / emacs / unix / src / bzero.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-02  |  114 b   |  10 lines

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