BSD 1 development
[unix-history] / portlib / calloc.c
# include "iodec.h"
calloc(n, s)
{
return (alloc(n * s));
}