1BSD/portlib/calloc.c

Compare this file to the similar file:
Show the results in this format:

# include	"iodec.h"

calloc(n, s)
{
	return (alloc(n * s));
}