home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / unixlib / src / bzero.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  114b  |  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.