Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdlib.h>
  3. #include <string.h>
  4.  
  5. void *
  6. calloc(size_t size, size_t nelem)
  7. {
  8.   void *rv = malloc(size*nelem);
  9.   if (rv)
  10.     memset(rv, 0, size*nelem);
  11.   return rv;
  12. }
  13.