Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/generic/malloc.c

    re6b73ad0 r1724745f  
    353353}
    354354
    355 void *calloc(const size_t nmemb, const size_t size)
    356 {
    357         void *block = malloc(nmemb * size);
    358         if (block == NULL)
    359                 return NULL;
    360 
    361         memset(block, 0, nmemb * size);
    362         return block;
    363 }
    364 
    365355void *malloc(const size_t size)
    366356{
Note: See TracChangeset for help on using the changeset viewer.