blob: 04b3c5e5aadc3c2095aed038e71297db44a8653e [file] [log] [blame]
/*
* calloc.c
*/
#include <stdlib.h>
#include <string.h>
/* FIXME: This should look for multiplication overflow */
void *calloc(size_t nmemb, size_t size)
{
return zalloc(size * nmemb);
}